-
Notifications
You must be signed in to change notification settings - Fork 1
79 lines (65 loc) · 1.96 KB
/
web-ci.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: Web CI
on:
push:
branches:
- main
pull_request:
jobs:
main:
runs-on: ubuntu-latest
timeout-minutes: 30
services:
postgres:
image: postgis/postgis:15-master
env:
POSTGRES_PASSWORD: password
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Check out repository code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: "7.0.x"
- name: Install dotnet csharpier
run: dotnet tool install -g csharpier
- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@v3
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 8
run_install: false
- 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 }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install Dependencies
run: pnpm install --shamefully-hoist
- name: Lint workspace
run: npx nx workspace-lint
- name: Format
run: npx nx format:check
- name: Lint affected
run: npx nx affected --target=lint --parallel=3 --output-style=stream
- name: Build affected
run: npx nx affected --target=build --parallel=3 --output-style=stream
- name: Test affected
run: npx nx affected --target=test --parallel=3 --output-style=stream