trim account name before use in URI #308
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: CI | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
branches: | |
- "**" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 16.x, 18.x , 20.x ] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
- run: npm run lint | |
- run: npm test | |
- run: npm run build --if-present | |
- name: Save build | |
if: matrix.node-version == '16.x' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build | |
path: | | |
. | |
!node_modules | |
retention-days: 1z | |
npm-publish-build: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: build | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: rlespinasse/github-slug-action@v3.x | |
- name: Append commit hash to package version | |
run: 'sed -i -E "s/(\"version\": *\"[^\"]+)/\1-${GITHUB_SHA_SHORT}/" package.json' | |
- name: Disable pre- and post-publish actions | |
run: 'sed -i -E "s/\"((pre|post)publish)/\"ignore:\1/" package.json' | |
- name: test node | |
run: node -v | |
- name: test npm | |
run: npm -v | |
npm-publish-latest: | |
needs: build | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: build | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.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@v3 | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
tag: latest |