pure/.github/workflows/test.yml

22 lines
346 B
YAML
Raw Normal View History

2021-07-04 16:45:41 +00:00
name: Testing
on:
push:
2024-10-07 17:52:34 +00:00
branches: [main]
2021-07-04 16:45:41 +00:00
pull_request:
2024-10-07 17:52:34 +00:00
branches: [main]
2021-07-04 16:45:41 +00:00
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
2024-10-07 17:40:18 +00:00
node-version: 20.x
2021-07-04 16:45:41 +00:00
- run: npm ci
- run: npm run lint
- run: npm test