chore(deps): update dependency typescript-eslint to v8.19.0 (#1829) #1329
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
concurrency: | |
group: ${{ github.workflow }} | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: main | |
- uses: ./.github/actions/prepare | |
- run: pnpm build | |
- run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Josh Goldberg" | |
npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN | |
env: | |
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- run: npx release-it --preRelease=beta | |
name: Release | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
id-token: write |