chore(deps): update dependency @types/node to v22.15.17 #1480
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🔎 Lint | |
on: | |
workflow_dispatch: | |
push: | |
branches-ignore: [ gh-pages ] | |
pull_request: | |
branches-ignore: [ gh-pages ] | |
types: [ opened, synchronize ] | |
jobs: | |
build: | |
name: 🔨 Build | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: ⚡ Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: 🔨 Build | |
run: yarn build:lib | |
lint: | |
name: 🔎 Lint | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: ⚡ Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: 🔎 Lint | |
run: yarn lint | |
env: | |
ESLINT_USE_FLAT_CONFIG: false |