Skip to content

Commit

Permalink
feature: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinant committed Nov 22, 2024
1 parent f01c23e commit 9b5900e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name : CI
on:
push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
uses: pnpm/action-setup@v2
with:
version: '7.9.2'
- uses: actions/setup-node@v3
with:
node-version: '22'
cache: 'pnpm'
- run: pnpm install --prefer-offline --frozen-lockfile
- run: pnpm playwright install chromium
- run: pnpm run ci
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_PROJECT_ID: ${{ secrets.TURBO_PROJECT_ID }}

0 comments on commit 9b5900e

Please sign in to comment.