Skip to content

Bump actions/setup-node from 3.7.0 to 4.0.0 (#11) #23

Bump actions/setup-node from 3.7.0 to 4.0.0 (#11)

Bump actions/setup-node from 3.7.0 to 4.0.0 (#11) #23

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up Node.js 18.17.0
uses: actions/[email protected]
with:
node-version: 18.17.0
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run eslint
- name: Run tests
run: npm run test