File tree Expand file tree Collapse file tree 5 files changed +44
-11
lines changed Expand file tree Collapse file tree 5 files changed +44
-11
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ jobs:
16
16
runs-on : buildjet-2vcpu-ubuntu-2204-arm
17
17
steps :
18
18
- name : Checkout
19
- uses : actions/checkout@v4
19
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
20
20
21
21
- name : Setup Node.js
22
- uses : actions/setup-node@v4
22
+ uses : actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e
23
23
with :
24
24
node-version-file : ' .nvmrc'
25
25
registry-url : ' https://npm.pkg.github.com'
Original file line number Diff line number Diff line change 13
13
jobs :
14
14
lint :
15
15
name : Lint
16
- uses : athombv/athom-github-workflow/.github/workflows/lint.yml@master
17
- secrets : inherit
16
+ runs-on : buildjet-2vcpu-ubuntu-2204-arm
17
+ steps :
18
+ - name : Checkout
19
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
20
+
21
+ - name : Setup Node.js
22
+ uses : actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e
23
+ with :
24
+ node-version-file : ' .nvmrc'
25
+ registry-url : ' https://npm.pkg.github.com'
26
+
27
+ - name : Lint
28
+ run : |
29
+ npm ci --ignore-scripts --audit=false
30
+ npm run lint
31
+ env :
32
+ NODE_AUTH_TOKEN : ${{ secrets.HOMEY_GITHUB_ACTIONS_BOT_PERSONAL_ACCESS_TOKEN }}
Original file line number Diff line number Diff line change @@ -38,10 +38,10 @@ jobs:
38
38
exit 1
39
39
40
40
- name : Checkout git repository
41
- uses : actions/checkout@v4
41
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
42
42
43
43
- name : Setup Node.js
44
- uses : actions/setup-node@v4
44
+ uses : actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e
45
45
with :
46
46
node-version-file : ' .nvmrc'
47
47
registry-url : ' https://npm.pkg.github.com'
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ jobs:
12
12
runs-on : buildjet-2vcpu-ubuntu-2204-arm
13
13
steps :
14
14
- name : Checkout
15
- uses : actions/checkout@v4
15
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
16
16
17
17
- name : Setup Node.js
18
- uses : actions/setup-node@v4
18
+ uses : actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e
19
19
with :
20
20
node-version-file : ' .nvmrc'
21
21
registry-url : ' https://npm.pkg.github.com'
55
55
# Post a Slack notification on success/failure
56
56
- name : Slack notify
57
57
if : always()
58
- uses : innocarpe/actions-slack@v1
58
+ uses : innocarpe/actions-slack@b2f50d9d8037ef8a1f77fa4659767747120124e4
59
59
with :
60
60
status : ${{ job.status }}
61
61
success_text : ' ${{github.repository}} - Published ${{ env.package_name }}@${{ env.package_version }} to GitHub Packages Registry 🚀'
Original file line number Diff line number Diff line change 13
13
jobs :
14
14
test :
15
15
name : Test
16
- uses : athombv/athom-github-workflow/.github/workflows/test.yml@master
17
- secrets : inherit
16
+ runs-on : buildjet-2vcpu-ubuntu-2204-arm
17
+ steps :
18
+ - name : Checkout
19
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
20
+
21
+ - name : Setup Node.js
22
+ uses : actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e
23
+ with :
24
+ node-version-file : ' .nvmrc'
25
+ registry-url : ' https://npm.pkg.github.com'
26
+
27
+ - name : Build
28
+ run : |
29
+ npm ci --audit=false
30
+ npm run build
31
+ env :
32
+ NODE_AUTH_TOKEN : ${{ secrets.HOMEY_GITHUB_ACTIONS_BOT_PERSONAL_ACCESS_TOKEN }}
33
+
34
+ - name : Test
35
+ run : npm run test
You can’t perform that action at this time.
0 commit comments