Skip to content

edit workflow file working directory text location #4

edit workflow file working directory text location

edit workflow file working directory text location #4

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
working-directory: ${{ github.workspace }}

Check failure on line 9 in .github/workflows/Test.yml

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/Test.yml (Line: 9, Col: 5): Unexpected value 'working-directory'
steps:
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies and build
run: |
pnpm install
pnpm build