chore(deps): update dependency oxlint to v0.13.0 #1694
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: Automated tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: latest | |
- uses: actions/setup-node@v4.1.0 | |
with: | |
cache: pnpm | |
node-version: 20 | |
registry-url: https://registry.npmjs.org | |
- run: pnpm install | |
env: | |
CI: true | |
- run: pnpm build | |
env: | |
CI: true | |
- run: pnpm test | |
env: | |
CI: true | |
- run: pnpm lint | |
env: | |
CI: true | |
- name: publish | |
if: startsWith(github.ref, 'refs/tags/v') | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |