Skip to content

Build(deps-dev): bump eslint from 8.55.0 to 9.0.0 #225

Build(deps-dev): bump eslint from 8.55.0 to 9.0.0

Build(deps-dev): bump eslint from 8.55.0 to 9.0.0 #225

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches: main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
node: [ 16.x, 18.x ]
steps:
- name: Check out project
uses: actions/checkout@v2
- name: Set up Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Run test scripts
run: npm test
- name: Build production website
run: npm run build