Skip to content

ci: update third-party actions to node 24 #26

ci: update third-party actions to node 24

ci: update third-party actions to node 24 #26

Workflow file for this run

permissions:
contents: read
name: Lint Checks
on:
pull_request:
jobs:
npm-release:
name: Lint And Build
runs-on: ubuntu-latest
steps:
- name: Setup | Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup | Node
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Clean Install
run: |
npm ci
- name: Lint
run: |
npm run lint
- name: Build
run: |
npm run build