Skip to content

Commit

Permalink
refactor: revamp GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Uninen committed Nov 19, 2024
1 parent 2525a6a commit 84ec0df
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,26 +29,24 @@ jobs:

steps:
- uses: actions/checkout@v4.2.2
- uses: actions/cache@v4.1.2
with:
path: /home/runner/.local/share/pnpm/store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/action-setup@v4.0.0
with:
version: 9
run_install: true
run_install: false

- uses: actions/setup-node@v4.1.0
with:
node-version: 22
cache: 'pnpm'

- name: Install deps
run: pnpm install --frozen-lockfile

- name: Type Check
run: pnpm ts

- name: Install Playwright browsers
run: npx playwright install --with-deps
run: pnpx playwright install --with-deps

- name: Run e2e tests
run: |
Expand Down

0 comments on commit 84ec0df

Please sign in to comment.