Skip to content

fix(ci): install deps in e2e workflow #932

fix(ci): install deps in e2e workflow

fix(ci): install deps in e2e workflow #932

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
uses: pnpm/action-setup@v4

Check failure on line 17 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: 17, Col: 9): 'uses' is already defined .github/workflows/ci.yml (Line: 21, Col: 9): 'uses' is already defined
with:
version: 9.5.0
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Run GraphQL diagnostics
run: pnpm gql:check
- name: Build project
env:
TURSO_CONNECTION_URL: ${{ secrets.TURSO_CONNECTION_URL }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
run: pnpm build