Skip to content

chore(deps): bump typescript-eslint from 8.53.0 to 8.54.0 (#414) #361

chore(deps): bump typescript-eslint from 8.53.0 to 8.54.0 (#414)

chore(deps): bump typescript-eslint from 8.53.0 to 8.54.0 (#414) #361

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
permissions:
contents: write
packages: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm run test
- name: Publish to npm
id: changesets
uses: changesets/action@v1
with:
title: "release: update versions and publish packages"
publish: npm run auto-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Shout if a publish happens
if: steps.changesets.outputs.published == 'true'
# You can do something when a publish happens.
run: echo "A new version of ${GITHUB_REPOSITORY} was published!"