Skip to content

Report correct error at startSession #15

Report correct error at startSession

Report correct error at startSession #15

Workflow file for this run

name: Lint
on:
push:
branches: [main, next]
pull_request:
permissions:
checks: write
contents: write
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install PNPM
run: npm i pnpm -g
- name: Install dependencies
run: pnpm i
- name: Build
run: pnpm run build
- name: Run linters
run: pnpm run lint