Skip to content

Commit

Permalink
fix node14 (#73)
Browse files Browse the repository at this point in the history
* fix node14

* re-include mac and windows builds
  • Loading branch information
TwitchBronBron committed May 3, 2024
1 parent 20add36 commit cb787ae
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Expand Up @@ -16,12 +16,13 @@ jobs:
CI: true
strategy:
matrix:
os: [ubuntu-latest] #, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: "12.22.7"
node-version: "14.18.1"
architecture: 'x64' # fix for macos-latest
- run: npm ci
- run: npm run build
- run: npm run lint
Expand All @@ -39,7 +40,8 @@ jobs:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: "12.22.7"
node-version: "14.18.1"
architecture: 'x64' # fix for macos-latest
- run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ./.npmrc
- run: npm ci
- run: npm run build
Expand Down

0 comments on commit cb787ae

Please sign in to comment.