flecks/.github/workflows/verify.yml
2024-02-04 00:35:34 -06:00

27 lines
541 B
YAML

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch: {}
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 }}
uses: actions/setup-node@v4
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