Skip to content

fix code runner c# #619

fix code runner c#

fix code runner c# #619

Workflow file for this run

name: Lint
on:
push:
workflow_dispatch:
jobs:
eslint_web:
name: Run ESLint (web)
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18.x
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Run ESLint
run: yarn workspace web run lint
eslint_api:
name: Run ESLint (api)
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18.x
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Run ESLint
run: yarn workspace api run lint