Skip to content

test: yarn lint: change working dir for all commands #206

test: yarn lint: change working dir for all commands

test: yarn lint: change working dir for all commands #206

Workflow file for this run

name: Yarn Linting
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: webapp
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: |
corepack enable
corepack install
- name: Setup Node.js and yarn
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "yarn"
cache-dependency-path: "webapp/yarn.lock"
- name: Install WebApp dependencies
run: yarn install --frozen-lockfile
- name: Linting
run: yarn lint