lint fix #3
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: Lint, Test, Publish and Release | |
permissions: | |
checks: write | |
contents: write | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
common: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/*" | |
registry-url: 'https://registry.npmjs.org' | |
cache: "yarn" | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Run linter | |
run: yarn lint | |
- name: Run prepare | |
run: yarn dev:prepare | |
- name: Run tests | |
run: yarn test | |
- name: Run prepack | |
run: yarn prepack | |
- name: Publish to npm | |
shell: bash | |
run: yarn publish --access public --no-git-checks | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Run github release | |
run: npx --yes changelogithub@latest | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |