File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1212 required : false
1313
1414env :
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'
1617
1718 HEAD_COMMIT : ${{ github.event.inputs.commit || github.sha }}
1819
@@ -58,15 +59,15 @@ jobs:
5859 echo "COMMIT_SHA=$COMMIT_SHA" >> $GITHUB_ENV
5960 echo "COMMIT_MESSAGE=$(git log -n 1 --pretty=format:%s $COMMIT_SHA)" >> $GITHUB_ENV
6061 outputs :
61- commit_label : " ${{ env.COMMIT_SHA }}: ${{ env.COMMIT_MESSAGE }}"
62+ commit_label : ' ${{ env.COMMIT_SHA }}: ${{ env.COMMIT_MESSAGE }}'
6263
6364 job_install_deps :
6465 name : Install Dependencies
6566 needs : job_get_metadata
6667 runs-on : ubuntu-latest
6768 timeout-minutes : 15
6869 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 }})'
7071 uses : actions/checkout@v2
7172 with :
7273 ref : ${{ env.HEAD_COMMIT }}
9394
9495 job_build :
9596 name : Build
96- needs : [ job_get_metadata, job_install_deps ]
97+ needs : [job_get_metadata, job_install_deps]
9798 runs-on : ubuntu-latest
9899 timeout-minutes : 20
99100 steps :
Original file line number Diff line number Diff line change 1+ # Disable rules of .npmignore in workspace root for this package
2+ ! *
3+
14# compiled output
25/dist /
36/tmp /
2427/testem.js
2528/tests /
2629/yarn.lock
30+ /.npmignore
2731.gitkeep
2832
2933# ember-try
You can’t perform that action at this time.
0 commit comments