-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (68 loc) · 2.07 KB
/
production.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Nx
on:
push:
branches:
- 'main'
jobs:
main:
runs-on: ubuntu-latest
environment: Production
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
run_install: false
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: |
${{ steps.pnpm-cache.outputs.STORE_PATH }}
~/.cache/Cypress
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Show environment information
shell: bash
run: |
npx envinfo --system --binaries --browsers --npmPackages "next,react,next-auth,@auth/*"
- name: Nx lint
uses: mansagroup/nrwl-nx-action@v3
with:
targets: lint
- name: Nx build
uses: mansagroup/nrwl-nx-action@v3
env:
NEXT_PUBLIC_GRAPHQL_ENDPOINT: ${{ vars.NEXT_PUBLIC_GRAPHQL_ENDPOINT }}
NEXT_PUBLIC_WS_ENDPOINT: ${{ vars.NEXT_PUBLIC_WS_ENDPOINT }}
NEXT_PUBLIC_SENTRY_DSN: ${{ vars.NEXT_PUBLIC_SENTRY_DSN }}
with:
targets: build
- name: Nx e2e
uses: mansagroup/nrwl-nx-action@v3
with:
targets: e2e
- name: Nx deploy
uses: mansagroup/nrwl-nx-action@v3
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
HASURA_GRAPHQL_ADMIN_SECRET: ${{ secrets.HASURA_GRAPHQL_ADMIN_SECRET }}
HASURA_GRAPHQL_ENDPOINT: ${{ secrets.HASURA_GRAPHQL_ENDPOINT }}
with:
targets: deploy