Skip to content

Update all npm dependencies (2024-06-08) #85

Update all npm dependencies (2024-06-08)

Update all npm dependencies (2024-06-08) #85

Workflow file for this run

name: Code check
on:
pull_request:
branches:
- main
jobs:
lint:
name: Eslint, Typescript, prettier and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: ESLint
run: npm run lint
- name: Type check
run: npm run typecheck
- name: Prettier
run: npm run format:check
- name: Tests
run: npm run test