Skip to content

build(deps-dev): bump eslint from 8.57.0 to 9.10.0 #136

build(deps-dev): bump eslint from 8.57.0 to 9.10.0

build(deps-dev): bump eslint from 8.57.0 to 9.10.0 #136

Workflow file for this run

name: GitHub CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-versions: ['18', 'lts/*']
steps:
- uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: test
run: npm test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
release:
runs-on: ubuntu-latest
needs: test
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- run: npm install
- name: semantic-release
run: npm run semantic-release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}