Skip to content

Commit

Permalink
Merge pull request #337 from akhenry/fix-ci
Browse files Browse the repository at this point in the history
fix(CI): run `npm install` before `build:example`
  • Loading branch information
unlikelyzero authored Jun 22, 2023
2 parents 5cc9c1b + c91d590 commit b4e6755
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Run build:example based on openmct-version
run: |
if [ "${{ matrix.openmct-version }}" = "latest" ]; then
npm run build:example:master
elif [ "${{ matrix.openmct-version }}" = "stable" ]; then
npm run build:example
fi
- run: npm install
2 changes: 1 addition & 1 deletion .github/workflows/yamcs-quickstart-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ jobs:
cd quickstart/docker
touch makeout.txt
make all &> makeout.txt &
- run: npm install
- name: Run build:example based on openmct-version
run: |
if [ "${{ matrix.openmct-version }}" = "latest" ]; then
npm run build:example:master
elif [ "${{ matrix.openmct-version }}" = "stable" ]; then
npm run build:example
fi
- run: npm install
- run: npx [email protected] install chromium
- name: Get Open MCT e2e tests
uses: nick-fields/retry@v2
Expand Down

0 comments on commit b4e6755

Please sign in to comment.