Skip to content

Commit 24f400f

Browse files
authored
Merge pull request #5 from corva-ai/chore-test
feat: add package-version output [CINF-3582]
2 parents 36ccf28 + 483402b commit 24f400f

16 files changed

+1966
-125311
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: "Setup Environment"
2+
3+
description: "Setup build environment and NodeJS"
4+
5+
inputs:
6+
build:
7+
description: "Whether to execute build step."
8+
required: false
9+
default: "true"
10+
11+
runs:
12+
using: "composite"
13+
steps:
14+
- name: Setup Node environment
15+
uses: actions/[email protected]
16+
with:
17+
node-version-file: '.nvmrc'
18+
- name: Cache NodeJS dependencies
19+
uses: actions/[email protected]
20+
id: nodejs-cache
21+
with:
22+
path: node_modules
23+
key: ${{ runner.os }}-${{ runner.arch }}-npm-${{ hashFiles('./yarn.lock') }}
24+
- name: Install NodeJS dependencies
25+
shell: bash
26+
if: ${{ steps.nodejs-cache.outputs.cache-hit != 'true' }}
27+
run: npm ci
28+
- name: Build project
29+
if: ${{ inputs.build == 'true' }}
30+
shell: bash
31+
run: |
32+
npm run build
33+
npm run package

.github/workflows/check-dist.yml

+41-23
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name: Check dist/
88
on:
99
push:
1010
branches:
11-
- main
11+
- develop
1212
paths-ignore:
1313
- '**.md'
1414
pull_request:
@@ -18,36 +18,54 @@ on:
1818

1919
jobs:
2020
check-dist:
21-
runs-on: ubuntu-latest
22-
21+
name: Check dist/
22+
runs-on: ubuntu-24.04
2323
steps:
24-
- uses: actions/checkout@v2
25-
26-
- name: Set Node.js 20.x
27-
uses: actions/setup-node@v4
24+
- name: Load secrets from 1Password
25+
uses: 1password/[email protected]
26+
id: secrets
2827
with:
29-
node-version: 20.x
30-
31-
- name: Install dependencies
32-
run: npm ci
33-
34-
- name: Rebuild the dist/ directory
35-
run: |
36-
npm run build
37-
npm run package
38-
28+
export-env: false
29+
env:
30+
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN_RO }}
31+
#
32+
APP_ID: 'op://GitHub.Actions/GitHub/corva-bot/APP_ID'
33+
PRIVATE_KEY: 'op://GitHub.Actions/GitHub/corva-bot/PRIVATE_KEY'
34+
- name: Checkout sources
35+
uses: actions/[email protected]
36+
with:
37+
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
38+
- name: Setup Environment
39+
uses: ./.github/actions/setup-environment
3940
- name: Compare the expected and actual dist/ directories
41+
id: diff
4042
run: |
4143
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then
4244
echo "Detected uncommitted changes after build. See status below:"
4345
git diff
4446
exit 1
4547
fi
46-
id: diff
47-
48-
# If index.js was different than expected, upload the expected version as an artifact
49-
- uses: actions/upload-artifact@v2
50-
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
48+
# If index.js was different then expected, upload the expected version as an artifact
49+
- name: Upload build artifact
50+
uses: actions/upload-artifact@v4.3.6
51+
if: ${{ failure() && steps.diff.outcome == 'failure' }}
52+
id: artifact
5153
with:
5254
name: dist
53-
path: dist/
55+
path: ./dist/
56+
- name: Generate GitHub token
57+
uses: actions/[email protected]
58+
if: ${{ success() || failure() }}
59+
id: token
60+
with:
61+
app-id: ${{ steps.secrets.outputs.APP_ID }}
62+
private-key: ${{ steps.secrets.outputs.PRIVATE_KEY }}
63+
- name: Add PR status check
64+
uses: ouzi-dev/[email protected]
65+
if: ${{ success() || failure() }}
66+
with:
67+
token: ${{ steps.token.outputs.token }}
68+
name: 'Check dist'
69+
status: ${{ job.status }}
70+
url: ${{ steps.diff.outcome == 'failure' && steps.artifact.outputs.artifact-url || format('https://github.com/{0}/actions/runs/{1}', github.repository, github.run_id) }}
71+
description: ${{ job.status == 'success' && 'dist/ is up-to-date' || 'dist/ needs to be updated. Click on "Details" to download updated package' }}

.github/workflows/code-analysis.yml

+151
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
name: 'Code Analysis'
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- synchronize
8+
push:
9+
branches:
10+
- develop
11+
12+
permissions:
13+
id-token: write
14+
contents: read
15+
actions: read
16+
checks: write
17+
statuses: write
18+
19+
jobs:
20+
lint:
21+
name: Lint
22+
runs-on: ubuntu-24.04
23+
steps:
24+
- name: Load secrets from 1Password
25+
uses: 1password/[email protected]
26+
id: secrets
27+
with:
28+
export-env: false
29+
env:
30+
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN_RO }}
31+
#
32+
APP_ID: 'op://GitHub.Actions/GitHub/corva-bot/APP_ID'
33+
PRIVATE_KEY: 'op://GitHub.Actions/GitHub/corva-bot/PRIVATE_KEY'
34+
- name: Checkout sources
35+
uses: actions/[email protected]
36+
with:
37+
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
38+
- name: Setup Environment
39+
uses: ./.github/actions/setup-environment
40+
with:
41+
build: "false"
42+
- name: Cache ESLint
43+
uses: actions/[email protected]
44+
with:
45+
path: .eslintcache
46+
key: ${{ runner.os }}-eslint-${{ hashFiles('./yarn.lock') }}-${{ hashFiles('./.eslint*') }}
47+
- name: Lint
48+
run: npm run lint
49+
- name: Generate GitHub token
50+
uses: actions/[email protected]
51+
if: ${{ success() || failure() }}
52+
id: token
53+
with:
54+
app-id: ${{ steps.secrets.outputs.APP_ID }}
55+
private-key: ${{ steps.secrets.outputs.PRIVATE_KEY }}
56+
- name: Add PR status check
57+
uses: ouzi-dev/[email protected]
58+
if: ${{ success() || failure() }}
59+
with:
60+
token: ${{ steps.token.outputs.token }}
61+
name: 'Lint'
62+
status: ${{ job.status }}
63+
url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
64+
description: ${{ job.status == 'success' && 'Linted successfully' || 'Linted with errors. Check PR annotations' }}
65+
66+
format:
67+
name: Format
68+
runs-on: ubuntu-24.04
69+
steps:
70+
- name: Load secrets from 1Password
71+
uses: 1password/[email protected]
72+
id: secrets
73+
with:
74+
export-env: false
75+
env:
76+
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN_RO }}
77+
#
78+
APP_ID: 'op://GitHub.Actions/GitHub/corva-bot/APP_ID'
79+
PRIVATE_KEY: 'op://GitHub.Actions/GitHub/corva-bot/PRIVATE_KEY'
80+
- name: Checkout sources
81+
uses: actions/[email protected]
82+
with:
83+
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
84+
- name: Setup Environment
85+
uses: ./.github/actions/setup-environment
86+
with:
87+
build: "false"
88+
- name: Format
89+
run: npm run format-check
90+
- name: Generate GitHub token
91+
uses: actions/[email protected]
92+
if: ${{ success() || failure() }}
93+
id: token
94+
with:
95+
app-id: ${{ steps.secrets.outputs.APP_ID }}
96+
private-key: ${{ steps.secrets.outputs.PRIVATE_KEY }}
97+
- name: Add PR status check
98+
uses: ouzi-dev/[email protected]
99+
if: ${{ success() || failure() }}
100+
with:
101+
token: ${{ steps.token.outputs.token }}
102+
name: 'Format'
103+
status: ${{ job.status }}
104+
url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
105+
description: ${{ job.status == 'success' && 'Code is properly formatted' || 'Code is not properly formatted. Check PR annotations' }}
106+
107+
test:
108+
name: Unit Test
109+
runs-on: ubuntu-24.04
110+
steps:
111+
- name: Load secrets from 1Password
112+
uses: 1password/[email protected]
113+
id: secrets
114+
with:
115+
export-env: false
116+
env:
117+
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN_RO }}
118+
#
119+
APP_ID: 'op://GitHub.Actions/GitHub/corva-bot/APP_ID'
120+
PRIVATE_KEY: 'op://GitHub.Actions/GitHub/corva-bot/PRIVATE_KEY'
121+
- name: Checkout sources
122+
uses: actions/[email protected]
123+
with:
124+
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
125+
- name: Setup Environment
126+
uses: ./.github/actions/setup-environment
127+
with:
128+
build: "false"
129+
- name: Cache Jest
130+
uses: actions/[email protected]
131+
with:
132+
path: ./node_modules/.cache/jest
133+
key: ${{ runner.os }}-jest-${{ hashFiles('./yarn.lock') }}
134+
- name: Test
135+
run: npm run test
136+
- name: Generate GitHub token
137+
uses: actions/[email protected]
138+
if: ${{ success() || failure() }}
139+
id: token
140+
with:
141+
app-id: ${{ steps.secrets.outputs.APP_ID }}
142+
private-key: ${{ steps.secrets.outputs.PRIVATE_KEY }}
143+
- name: Add PR status check
144+
uses: ouzi-dev/[email protected]
145+
if: ${{ success() || failure() }}
146+
with:
147+
token: ${{ steps.token.outputs.token }}
148+
name: 'Unit Test'
149+
status: ${{ job.status }}
150+
url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
151+
description: ${{ job.status == 'success' && 'Unit tests ran successfully' || 'Unit tests ran with errors. Check PR annotations' }}

.github/workflows/codeql-analysis.yml

-71
This file was deleted.

.github/workflows/test.yml

-26
This file was deleted.

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,6 @@ Thumbs.db
9696

9797
# Ignore built ts files
9898
__tests__/runner/*
99-
lib/**/*
99+
lib/**/*
100+
101+
.idea

action.yml

+5
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,14 @@ inputs:
3838
description: 'Change status to published after package upload'
3939
required: false
4040
default: 'false'
41+
label:
42+
description: 'Label to set on the package when publishing'
43+
required: false
4144
outputs:
4245
package-id:
4346
description: 'Package ID that was deployed'
47+
package-version:
48+
description: 'Package version that was deployed'
4449
package-status:
4550
description: 'Final status of the deployed package (draft is a successful deploy)'
4651
runs:

0 commit comments

Comments
 (0)