Commit 8a8e489 1 parent cba9861 commit 8a8e489 Copy full SHA for 8a8e489
File tree 2 files changed +9
-4
lines changed
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 12
12
required : false
13
13
14
14
env :
15
- DEFAULT_NODE_VERSION : ' 16'
15
+ # We pin the exact version to enforce reproducable builds with node + npm.
16
+ DEFAULT_NODE_VERSION : ' 16.15.1'
16
17
17
18
HEAD_COMMIT : ${{ github.event.inputs.commit || github.sha }}
18
19
@@ -58,15 +59,15 @@ jobs:
58
59
echo "COMMIT_SHA=$COMMIT_SHA" >> $GITHUB_ENV
59
60
echo "COMMIT_MESSAGE=$(git log -n 1 --pretty=format:%s $COMMIT_SHA)" >> $GITHUB_ENV
60
61
outputs :
61
- commit_label : " ${{ env.COMMIT_SHA }}: ${{ env.COMMIT_MESSAGE }}"
62
+ commit_label : ' ${{ env.COMMIT_SHA }}: ${{ env.COMMIT_MESSAGE }}'
62
63
63
64
job_install_deps :
64
65
name : Install Dependencies
65
66
needs : job_get_metadata
66
67
runs-on : ubuntu-latest
67
68
timeout-minutes : 15
68
69
steps :
69
- - name : " Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})"
70
+ - name : ' Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})'
70
71
uses : actions/checkout@v2
71
72
with :
72
73
ref : ${{ env.HEAD_COMMIT }}
93
94
94
95
job_build :
95
96
name : Build
96
- needs : [ job_get_metadata, job_install_deps ]
97
+ needs : [job_get_metadata, job_install_deps]
97
98
runs-on : ubuntu-latest
98
99
timeout-minutes : 20
99
100
steps :
Original file line number Diff line number Diff line change
1
+ # Disable rules of .npmignore in workspace root for this package
2
+ ! *
3
+
1
4
# compiled output
2
5
/dist /
3
6
/tmp /
24
27
/testem.js
25
28
/tests /
26
29
/yarn.lock
30
+ /.npmignore
27
31
.gitkeep
28
32
29
33
# ember-try
You can’t perform that action at this time.
0 commit comments