Skip to content

Merge pull request #7 from rfverbruggen/dependabot/npm_and_yarn/brace… #19

Merge pull request #7 from rfverbruggen/dependabot/npm_and_yarn/brace…

Merge pull request #7 from rfverbruggen/dependabot/npm_and_yarn/brace… #19

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [16, 18, 20]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install deps and build (with cache)
run: npm install
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build