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

Update all non-major dependencies #479

Update all non-major dependencies

Update all non-major dependencies #479

Workflow file for this run

name: Frontend Lint
on:
pull_request:
branches:
- main
- develop
jobs:
test:
name: "Run eslint / tsc"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 8
run_install: false
- name: Install dependencies
run: pnpm install
- name: eslint
run: pnpm lint
- name: tsc
run: pnpm type-check