Skip to content

Commit

Permalink
erge
Browse files Browse the repository at this point in the history
  • Loading branch information
timbl committed Nov 17, 2024
2 parents 8c85257 + 2b86c47 commit 3482eaa
Show file tree
Hide file tree
Showing 4 changed files with 4,045 additions and 3,114 deletions.
24 changes: 21 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
strategy:
matrix:
node-version:
- 14.x
- 16.x
- 18.x
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -27,7 +27,7 @@ jobs:
- run: npm run build
- run: npm run bundlesize
- name: Save build
if: matrix.node-version == '14.x'
if: matrix.node-version == '16.x'
uses: actions/upload-artifact@v2
with:
name: build
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
name: build
- uses: actions/setup-node@v1
with:
node-version: 14.x
node-version: 18.x
- uses: rlespinasse/[email protected]
- name: Append commit hash to package version
run: 'sed -i -E "s/(\"version\": *\"[^\"]+)/\1-${GITHUB_SHA_SHORT}/" package.json'
Expand All @@ -69,3 +69,21 @@ jobs:
with:
token: ${{ secrets.NPM_TOKEN }}
tag: ${{ env.GITHUB_REF_SLUG }}

npm-publish-latest:
needs: build
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/download-artifact@v2
with:
name: build
- uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Disable pre- and post-publish actions
run: 'sed -i -E "s/\"((pre|post)publish)/\"ignore:\1/" package.json'
- uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}
tag: latest
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16.14.0
v18.19.0
Loading

0 comments on commit 3482eaa

Please sign in to comment.