pure/.github/workflows/test.yml

22 lines
350 B
YAML
Raw Normal View History

2021-07-04 16:45:41 +00:00
name: Testing
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
2022-07-11 16:58:33 +00:00
node-version: 16.x
2021-07-04 16:45:41 +00:00
- run: npm ci
- run: npm run lint
- run: npm test