Skip to content

Commit

Permalink
hotfix: working directory in lint jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
quinn-dougherty authored Apr 12, 2022
1 parent e7e51d9 commit d45b5f3
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ jobs:
uses: creyD/prettier_action@v4.2
with:
dry: true
prettier_options: --check .
# working_directory: packages/squiggle-lang
prettier_options: --check packages/squiggle-lang

lang-build-test-bundle:
name: Language build, test, and bundle
Expand Down Expand Up @@ -91,15 +90,14 @@ jobs:
defaults:
run:
shell: bash
# working-directory: packages/components
working-directory: packages/components
steps:
- uses: actions/checkout@v2
- name: Check javascript, typescript, and markdown lint
uses: creyD/prettier_action@v4.2
with:
dry: true
prettier_options: --check .
working_directory: packages/components
prettier_options: --check packages/components

components-bundle-build:
name: Components bundle and build
Expand Down Expand Up @@ -129,15 +127,14 @@ jobs:
defaults:
run:
shell: bash
# working-directory: packages/website
working-directory: packages/website
steps:
- uses: actions/checkout@v2
- name: Check javascript, typescript, and markdown lint
uses: creyD/prettier_action@v4.2
with:
dry: true
prettier_options: --check .
working_directory: packages/website
prettier_options: --check packages/website

website-build:
name: Website build
Expand Down

0 comments on commit d45b5f3

Please # to comment.