Skip to content

Commit

Permalink
drop node 14 & 15
Browse files Browse the repository at this point in the history
  • Loading branch information
johntalton committed Dec 25, 2023
1 parent 55974f8 commit ec5127a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [14, 15, 16, 20]
node-version: [16, 20]
os: [macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
Expand Down
15 changes: 7 additions & 8 deletions .github/workflows/RELEASE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jobs:
# Publish to NPM
- uses: actions/setup-node@v2.4.0
with:
node-version: '14'
registry-url: 'https://registry.npmjs.org/'
- run: npm install
- run: npm run build
Expand All @@ -20,10 +19,10 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

# Publish to GitHub
- uses: actions/setup-node@v2.4.0
with:
node-version: '14'
registry-url: 'https://npm.pkg.github.com/'
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - uses: actions/setup-node@v2.4.0
# with:
# node-version: '14'
# registry-url: 'https://npm.pkg.github.com/'
# - run: npm publish
# env:
# NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ec5127a

Please sign in to comment.