Skip to content

working dir

working dir #3

name: Devcon Archive CI
on:
push:
paths:
- "lib/**"
- "devcon-archive/**"
- ".github/workflows/devcon-archive.yml"
pull_request:
paths:
- "lib/**"
- "devcon-archive/**"
- ".github/workflows/devcon-archive.yml"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
working_directory: devcon-archive

Check failure on line 21 in .github/workflows/devcon-archive.yml

View workflow run for this annotation

GitHub Actions / Devcon Archive CI

Invalid workflow file

The workflow is not valid. .github/workflows/devcon-archive.yml (Line: 21, Col: 9): Unexpected value 'working_directory' .github/workflows/devcon-archive.yml (Line: 27, Col: 9): Unexpected value 'working_directory'
uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: Change to relevant directory
working_directory: devcon-archive
run: cd devcon-archive
- name: Create env file
working_directory: devcon-archive
run: |
touch .env
echo DB_CONNECTION_STRING='${{ secrets.DB_CONNECTION_STRING }}' >> .env
echo ELASTIC_ENDPOINT='${{ secrets.ELASTIC_ENDPOINT }}' >> .env
- name: Install dependencies
working_directory: devcon-archive
run: yarn
- name: Run Prettier // Format
working_directory: devcon-archive
run: yarn format
- name: Run Eslint // Lint
working_directory: devcon-archive
run: yarn lint
- name: Run Build
working_directory: devcon-archive
run: yarn build
- name: Serve build to test against
working_directory: devcon-archive
run: yarn serve &
- uses: microsoft/playwright-github-action@v1
- name: Run your tests
working_directory: devcon-archive
run: npm test
- uses: actions/upload-artifact@v2
working_directory: devcon-archive
with:
name: screenshots
path: screenshots