Merge pull request #123 from legobeat/master #178
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node CI | |
on: [push] | |
env: | |
FORCE_COLOR: 2 | |
jobs: | |
test: | |
name: v${{ matrix.node }} @ ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node: | |
- 18 | |
- 20 | |
# TODO: Unpin to `22` once parcel incomaptibility with 22.7+ is resolved | |
# - https://github.com/nodejs/node/issues/54573 | |
# - https://github.com/parcel-bundler/parcel/issues/9926 | |
- 22.6 | |
os: | |
- ubuntu-latest | |
- macOS-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4 | |
with: | |
node-version: ${{ matrix.node }} | |
registry-url: 'https://registry.npmjs.org' | |
cache: 'npm' | |
- run: npm ci | |
- name: Build and run tests | |
run: | | |
npm run build --if-present | |
npm test | |
- name: Run browser tests and lint | |
run: | | |
npm run browser-tests | |
npm run lint |