Skip to content

Commit

Permalink
tries push with node 16.x and caching
Browse files Browse the repository at this point in the history
  • Loading branch information
ajrothwell committed Nov 29, 2023
1 parent 19f42fb commit 3b14b32
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 73 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/dev_push_to_s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Use Node.js 18
uses: actions/setup-node@v4
- uses: actions/checkout@master
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '16.x'
cache: 'npm'

- name: install npm 6
run: |
npm install -g npm@6
- name: npm install, and build
run: |
printf "@fortawesome:registry=https://npm.fontawesome.com/\n//npm.fontawesome.com/:_authToken=${FONTAWESOME_NPM_AUTH_TOKEN}" >> ~/.npmrc
Expand Down
150 changes: 81 additions & 69 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3b14b32

Please sign in to comment.