Skip to content

Add working directory for frontend build #3

Add working directory for frontend build

Add working directory for frontend build #3

Workflow file for this run

name: Frontend Workflow
on: [push, pull_request]
jobs:
build:
defaults:
run:
working-directory: frontend
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "20.11"
- name: Install dependencies
run: yarn
- name: Lint
run: yarn lint
- name: Test
run: yarn test