Skip to content

Update GitHub Actions workflow configuration #2

Update GitHub Actions workflow configuration

Update GitHub Actions workflow configuration #2

Workflow file for this run

name: Node CI
on:
- push
- pull_request
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Linter check
run: npm run lint