Skip to content

Commit

Permalink
ci(washboard): update workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Lachlan Heywood <lachieh@users.noreply.github.com>
  • Loading branch information
lachieh committed May 2, 2024
1 parent c39020e commit 6e924d9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/washboard.yml
Expand Up @@ -52,19 +52,19 @@ jobs:
run: yarn install --immutable

- name: Prettier
run: yarn run turbo:format:prettier:check
run: yarn run turbo:format

- name: ESLint
run: yarn run turbo:lint:eslint
run: yarn run turbo:lint

- name: Vitest
run: yarn run turbo:test:vitest
- name: Unit Tests
run: yarn run turbo:test:unit

- name: Install Playwright Browsers
run: npx playwright install --with-deps chromium

- name: Playwright Tests
run: yarn run test:playwright:headless
- name: E2E Tests
run: yarn run turbo:test:e2e

- name: Build
run: yarn run turbo:build
Expand Down
3 changes: 3 additions & 0 deletions washboard-ui/turbo.json
Expand Up @@ -18,6 +18,9 @@
"outputs": ["playwright-report", "test-results"]
},
"test:unit": {},
"test": {
"dependsOn": ["test:unit", "test:e2e"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "build/**"],
Expand Down

0 comments on commit 6e924d9

Please sign in to comment.