Skip to content
This repository has been archived by the owner on Oct 2, 2022. It is now read-only.

Commit

Permalink
fix: add working directories to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
elanum committed Jan 21, 2021
1 parent e4345cb commit 3931b93
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
eslint:
name: Setup Client
name: ESLint
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -19,12 +19,12 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2

- name: Change to directory ${{ matrix.directory }}
run: cd ${{ matrix.directory }}

- name: Install dependencies
- name: Install ${{ matrix.directory}} dependencies
run: yarn
working-directory: ${{ matrix.directory }}

- name: ESLint
- name: Run Lint
run: yarn lint
working-directory: ${{ matrix.directory }}


0 comments on commit 3931b93

Please # to comment.