Skip to content

Commit 8a8e489

Browse files
authored
fix(ember): Restore ember package contents (#5318)
1 parent cba9861 commit 8a8e489

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/build.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ on:
1212
required: false
1313

1414
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'
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 }}
@@ -93,7 +94,7 @@ jobs:
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:

packages/ember/.npmignore

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Disable rules of .npmignore in workspace root for this package
2+
!*
3+
14
# compiled output
25
/dist/
36
/tmp/
@@ -24,6 +27,7 @@
2427
/testem.js
2528
/tests/
2629
/yarn.lock
30+
/.npmignore
2731
.gitkeep
2832

2933
# ember-try

0 commit comments

Comments
 (0)