Bump oxlint #15
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: Bump oxlint | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
required: true | |
type: string | |
env: | |
OXLINT_PACKAGE_NAME: oxlint | |
jobs: | |
bump: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
cache: pnpm | |
- name: Bump oxlint rules | |
run: | | |
pnpm install | |
pnpm update oxlint | |
pnpm install | |
pnpm run clone | |
pnpm run generate # Generate rules from latest oxlint | |
pnpm run test -u # Update test snapshots | |
- uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: 'release: v${{ inputs.version }}' | |
committer: Boshen <[email protected]> | |
author: Boshen <[email protected]> | |
branch: release | |
branch-suffix: timestamp | |
title: 'release: v${{ inputs.version }}' | |
assignees: Boshen | |
base: main |