Skip to content

Commit eec10bd

Browse files
authored
Create tests.yml
1 parent e5fa80a commit eec10bd

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/tests.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
tests:
7+
runs-on: ubuntu-latest
8+
9+
strategy:
10+
matrix:
11+
node: [ '12', '14', '16' ]
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-node@v2
16+
with:
17+
node-version: ${{ matrix.node }}
18+
19+
- run: yarn install --frozen-lockfile
20+
- run: yarn test

0 commit comments

Comments
 (0)