fix: lint and test #270
Workflow file for this run
This file contains hidden or 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: Main | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| workflow_dispatch: | |
| jobs: | |
| npm: | |
| name: Publish to Npm | |
| runs-on: ubuntu-latest | |
| if: startsWith(github.ref, 'refs/tags/v') | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| - name: Change version | |
| id: vars | |
| run: | | |
| VERSION=${GITHUB_REF#refs/*/} | |
| npm version "$VERSION" --no-git-tag-version | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Test | |
| run: npm run test --coverage | |
| - name: Build | |
| run: | | |
| npm run build | |
| npm run build:types | |
| - name: Publish | |
| run: | | |
| echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc | |
| npm publish | |
| # Slack | |
| - name: Slack notification | |
| uses: 8398a7/action-slack@v3 | |
| if: ${{ always() && env.SLACK_WEBHOOK_URL != 0 }} | |
| with: | |
| status: ${{ job.status }} | |
| job_name: Check & Publish | |
| fields: repo,message,commit,author,action,eventName,ref,workflow,job,took | |
| username: GitHub Actions | |
| icon_emoji: ':github-actions:' | |
| channel: 'C02DQ1A7JLR' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |