Skip to content

fix(deps): update npm deps #207

fix(deps): update npm deps

fix(deps): update npm deps #207

Workflow file for this run

name: CI
on:
pull_request:
paths:
- .github/workflows/ci.yml
- src/**
- .gitignore
- package-lock.json
- package.json
- tsconfig.json
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: CI
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4
with:
node-version: 20.9.0
cache: "npm"
- name: Install Dependencies
run: npm install
- name: Format
run: npm run format
- name: Lint
run: npm run lint
- name: Check
run: npm run check