Skip to content

Commit

Permalink
Merge pull request #53 from yola/setup_actions
Browse files Browse the repository at this point in the history
Create first Github Actions workflow
  • Loading branch information
yanaddn authored May 23, 2024
2 parents 99d9026 + e572da4 commit c298169
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Run tests on PRs

on:
push:
branches: [ 'master' ]
pull_request:
branches: [ 'master' ]

jobs:
tests:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 14.21.3
useLockFile: false
- run: npm install
- run: npm test
1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

0 comments on commit c298169

Please sign in to comment.