Skip to content

build: update node and dependency versions #9

build: update node and dependency versions

build: update node and dependency versions #9

Workflow file for this run

name: ESLint
on:
pull_request:
push:
jobs:
test:
#if: ${{ false }} # disable until next PR which will fix all the eslint errors
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
- run: npm ci
# - run: npm run build --if-present
- run: npm run eslint