Skip to content

build(deps-dev): update eslint to v9 and switch to neostandard #1474

build(deps-dev): update eslint to v9 and switch to neostandard

build(deps-dev): update eslint to v9 and switch to neostandard #1474

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 }}