Skip to content

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.48.1 to 8.51.0 #2954

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.48.1 to 8.51.0

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.48.1 to 8.51.0 #2954

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: write
packages: write
jobs:
build_test_publish:
name: Build, test and publish
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
- name: Set up Node.js
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f
with:
node-version: 24.x
cache: yarn
- name: Build, lint and test
run: |
yarn --immutable
yarn lint
yarn build:ts
yarn test
- name: Release on npm
if: |
github.event_name != 'pull_request' &&
!startsWith(github.event.head_commit.message, 'chore')
env:
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
run: |
git config "user.name" "ffflobot"
git config "user.email" "[email protected]"
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
yarn release