-
-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (58 loc) · 1.45 KB
/
ci.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
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
name: CI
on:
pull_request:
branches:
- main
- 'releases/*'
permissions:
contents: read
id-token: write
env:
PULUMI_CONFIG_PASSPHRASE: ${{ secrets.PULUMI_CONFIG_PASSPHRASE}}
concurrency:
group: ${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
test:
name: Lint and test
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install Dependencies
id: npm-ci
run: npm ci
- name: Check Format
id: npm-format-check
run: npm run format:check
- name: Lint
id: npm-lint
run: npm run lint
- name: GCP login
id: auth
uses: google-github-actions/auth@v2
with:
token_format: access_token
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }}
service_account: ${{ secrets.GCP_VIEWER_SA }}
- name: Run bundle
id: npm-bundle
run: npm run bundle
- name: Install test dependencies
id: npm-test-deps
working-directory: ./__tests__
run: npm ci
- name: Test
id: npm-test
working-directory: ./__tests__
run: |
pulumi login gs://gcp-pac
npm run test
pulumi logout