Skip to content

build(deps-dev): bump @types/node from 22.1.0 to 22.7.5 #441

build(deps-dev): bump @types/node from 22.1.0 to 22.7.5

build(deps-dev): bump @types/node from 22.1.0 to 22.7.5 #441

Workflow file for this run

name: 'Build & Test'
env:
HUSKY: 0
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request: null
jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'npm'
- name: Install
run: |
npm ci
- name: Format
run: |
npm run format
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'npm'
- name: Install
run: |
npm ci
- name: Lint
run: |
npm run lint
build_and_test:
uses: ./.github/workflows/build-and-test.yml