-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (41 loc) · 1.24 KB
/
test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Test all
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
env:
DOWNLOAD_TOKEN: ${{ secrets.DOWNLOAD_TOKEN}}
API_URL: ${{ secrets.API_URL }}
steps:
- uses: actions/checkout@v4
- name: Cache turbo build setup
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
- uses: pnpm/action-setup@v4
with:
version: 9.0.0
- run: echo "node_version=$(cat .github/nodejs.version)" >> $GITHUB_ENV
- name: "Use node ${{ env.node_version }}"
uses: actions/setup-node@v3
with:
node-version: "${{ env.node_version }}"
cache: "pnpm"
- name: Install dependencies
run: pnpm install && pnpm add -g [email protected]
- name: Format & Lint
run: pnpm format
- name: Generate Prisma types
run: |
pnpm dlx [email protected] generate --schema apps/gateway-service/prisma/schema.prisma
pnpm dlx [email protected] generate --schema apps/product-service/prisma/schema.prisma
- name: Test
run: pnpm test