Skip to content

build(deps-dev): bump eslint from 9.12.0 to 9.13.0 #1477

build(deps-dev): bump eslint from 9.12.0 to 9.13.0

build(deps-dev): bump eslint from 9.12.0 to 9.13.0 #1477

Workflow file for this run

name: ci
on:
push:
branches:
- master
- next
pull_request:
branches:
- master
- next
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 20
- 22
steps:
- uses: actions/checkout@v4
- uses: volta-cli/action@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
release:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
- uses: volta-cli/action@v4
- run: npm ci
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}