Skip to content

Lock file maintenance #314

Lock file maintenance

Lock file maintenance #314

Workflow file for this run

name: Lint
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
branches:
- main
- next
pull_request:
branches:
- main
- next
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- run: echo "${{ github.actor }}"
- uses: actions/checkout@v6
- name: Use Node.js 22.x
uses: actions/setup-node@v6
with:
node-version: 24
registry-url: "https://registry.npmjs.org"
- run: npm install
- name: Build
run: npm run build
- name: Lint
run: npm run lint