Skip to content
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.

build(deps-dev): bump @typescript-eslint/eslint-plugin from 6.21.0 to 7.0.1 #110

build(deps-dev): bump @typescript-eslint/eslint-plugin from 6.21.0 to 7.0.1

build(deps-dev): bump @typescript-eslint/eslint-plugin from 6.21.0 to 7.0.1 #110

Workflow file for this run

# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
name: "Checks"
on: pull_request
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-node@v4.0.2
with:
node-version-file: "package.json"
cache: "npm"
- run: npm ci
- run: npm run build
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-node@v4.0.2
with:
node-version-file: "package.json"
cache: "npm"
- run: npm ci
- run: npm run lint
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-node@v4.0.2
with:
node-version-file: "package.json"
cache: "npm"
- run: npm ci
- run: npm test