Release v24.10.0 #269
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
name: Test | |
on: [ push, pull_request, workflow_dispatch ] | |
jobs: | |
Coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- run: npm install --no-audit && npm install -g uglify-js | |
- run: npm audit --audit-level=low | |
- run: npx c8 -r lcovonly -r text npm test | |
- run: npm run lint | |
- uses: coverallsapp/github-action@v2 | |
name: Upload to coveralls.io | |
with: | |
github-token: ${{ github.token }} | |
Analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: github/codeql-action/init@v3 | |
with: | |
languages: javascript | |
- uses: github/codeql-action/analyze@v3 | |
with: | |
category: /language:javascript | |
Release: | |
if: startsWith(github.ref, 'refs/tags/v') | |
needs: [Analyze, Coverage] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.ref }} | |
- run: | | |
echo '${{ vars.RELEASE_SIGNERS }}' > ./allowed_signers | |
git config gpg.ssh.allowedSignersFile ./allowed_signers | |
git verify-tag -v ${{ github.ref_name }} | |
name: Verify release tag signature | |
- uses: actions/setup-node@v4 | |
with: | |
registry-url: https://registry.npmjs.org/ | |
- run: | | |
gh release create $TAG --title $TAG --notes "$(git tag -l --format='%(subject)%0a%0a%(contents:body)' $TAG)" | |
gh run list --json databaseId -q '.[20:]|.[].databaseId' --limit 100 | xargs -I{} gh run delete "{}" | |
[[ "$TAG" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]] && echo "PUBLISH=latest" >> $GITHUB_ENV || echo "PUBLISH=next" >> $GITHUB_ENV | |
env: | |
GH_TOKEN: ${{ github.token }} | |
TAG: ${{ github.ref_name }} | |
- run: npm publish --access public --tag $PUBLISH | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |