Skip to content

Bump actions/setup-node from 6.2.0 to 6.3.0 in the actions group across 1 directory #402

Bump actions/setup-node from 6.2.0 to 6.3.0 in the actions group across 1 directory

Bump actions/setup-node from 6.2.0 to 6.3.0 in the actions group across 1 directory #402

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: '18'
- name: NPM Install
run: if [ -e package-lock.json ]; then npm ci; else npm i; fi
- name: Run eslint linter
run: npx eslint --max-warnings 0 .
- name: Run TypeScript compiler
run: npx tsc
- name: Run Prettier code style checks
run: npx prettier -c .