flecks/.github/workflows/verify.yml

27 lines
541 B
YAML
Raw Normal View History

2024-02-03 20:31:35 -06:00
name: CI
on:
push:
2024-02-04 00:25:48 -06:00
branches: [master]
2024-02-03 20:31:35 -06:00
pull_request:
2024-02-04 00:25:48 -06:00
branches: [master]
2024-02-04 00:12:03 -06:00
workflow_dispatch: {}
2024-02-03 20:31:35 -06:00
jobs:
verify:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
2024-02-04 00:35:34 -06:00
uses: actions/setup-node@v4
2024-02-03 20:31:35 -06:00
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ${{ vars.NPM_CI_FLAGS }} ci
- run: npm run lint
- run: npm run test
- run: npm run build