Skip to content

Commit

Permalink
Merge pull request #17 from evilmonkeyinc/test-actions
Browse files Browse the repository at this point in the history
feat: adding test actions
  • Loading branch information
evilmonkeyinc authored Oct 21, 2021
2 parents b557bf6 + 9c9a432 commit c6b710d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, lts/*]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn test

0 comments on commit c6b710d

Please sign in to comment.