Skip to content

Uses NodeJS 16, 18, 20 for CI and disables CI browser testing #66

Uses NodeJS 16, 18, 20 for CI and disables CI browser testing

Uses NodeJS 16, 18, 20 for CI and disables CI browser testing #66

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
yarn
yarn run build --if-present
env:
CI: true