Skip to content

feature: ci

feature: ci #2

Workflow file for this run

name : CI
on:
push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
uses: pnpm/action-setup@v2

Check failure on line 9 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 9, Col: 9): 'uses' is already defined
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 }}