UNPKG

490 BYAMLView Raw
1name: Automated tests
2on:
3 push:
4 paths:
5 - 'src/**'
6 - 'package.json'
7 - 'package-lock.json'
8 - '.babelrc'
9 - '.eslintrc.json'
10 - '.github/workflows/tests.yaml'
11 - 'rollup.config.js'
12
13jobs:
14 ci:
15 runs-on: ubuntu-latest
16 container: node:16
17
18 steps:
19 - name: Check out repository code
20 uses: actions/checkout@v2
21
22 - name: Install dependencies
23 run: npm install
24
25 - name: Run tests
26 run: npm test
27