Skip to content

Commit

Permalink
Specify node version (#67)
Browse files Browse the repository at this point in the history
* Update ci.yml

* reorder operations

* update gitignore so that node_modules aren't tracked

* Update ci.yml

bump down to 18 for consistency with current implementation

* include bare file to make node install work correctly in pipeline

* Update to action v4 per feedback on PR

* Removing all but core elements to serve as a placeholder for now.

* testing to see if action upgrade removes the need for the dummy package.

* Revert "testing to see if action upgrade removes the need for the dummy package."

This reverts commit 30ca73b.

* remove cache specifier

* testing again by removing package file

---------

Co-authored-by: Christopher Stryker <christopher.stryker@emerson.com>
  • Loading branch information
ChrisStrykesAgain and Christopher Stryker authored Feb 20, 2025
1 parent fb46ddc commit cb90411
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '18'

- name: Run build script
run: bash build.sh
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
build/
external-plugins/
build/
node_modules/
.DS_STORE

0 comments on commit cb90411

Please sign in to comment.