File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed
Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change 99jobs :
1010 build-and-test :
1111 runs-on : ubuntu-latest
12+ env :
13+ NEXT_PUBLIC_SUPABASE_URL : ${{ secrets.NEXT_PUBLIC_SUPABASE_URL }}
14+ NEXT_PUBLIC_SUPABASE_ANON_KEY : ${{ secrets.NEXT_PUBLIC_SUPABASE_ANON_KEY }}
1215 steps :
1316 - uses : actions/checkout@v4
17+
1418 - name : Use Node.js 22
1519 uses : actions/setup-node@v4
1620 with :
1721 node-version : 22
22+
1823 - name : Install dependencies
1924 run : yarn install --frozen-lockfile
25+
2026 - name : Lint
2127 run : yarn lint
28+
2229 - name : Run unit tests (Vitest)
2330 run : yarn test:unit
31+
2432 - name : Build
2533 run : yarn build
34+
2635 - name : Run E2E tests (Playwright)
2736 run : yarn test:e2e
28- env :
29- NEXT_PUBLIC_SUPABASE_URL : ${{ secrets.NEXT_PUBLIC_SUPABASE_URL }}
30- NEXT_PUBLIC_SUPABASE_ANON_KEY : ${{ secrets.NEXT_PUBLIC_SUPABASE_ANON_KEY }}
31-
32- # CodeRabbit AI will automatically review PRs when configured in the repository
33- # Configuration files: .coderabbit.yaml and .coderabbit.ignore
You can’t perform that action at this time.
0 commit comments