Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotBraem committed May 20, 2024
1 parent fb72340 commit e64b9d1
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 20
cache: "npm"
cache: "yarn"
- name: Install dependencies
run: npm ci
run: yarn install --frozen-lockfile
- name: Run code formatting check
run: npm run fmt:check
run: yarn run fmt:check
playwright-tests:
name: Playwright tests
runs-on: ubuntu-latest
Expand All @@ -27,11 +27,10 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 20
cache: "npm"
cache: "yarn"
- name: Install dependencies
run: |
npm ci
npm install bos-workspace
yarn add bos-workspace
npx playwright install-deps
npx playwright install
- name: Run tests
Expand Down

0 comments on commit e64b9d1

Please sign in to comment.