Skip to content

Update GitHub Actions to v7 #64

Update GitHub Actions to v7

Update GitHub Actions to v7 #64

Workflow file for this run

name: Lint
on: push
jobs:
code-lint:
name: Run linters
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm ci
- run: npm run build --if-present
- run: npm test
- name: Lint
run: npm run lint