Skip to content

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.7.1 to 8.8.0 #409

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.7.1 to 8.8.0

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.7.1 to 8.8.0 #409

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Run tests
run: npm test
- name: Build
run: npm run build
release:
needs: build
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.ZAPBOT_TOKEN }}
NPM_TOKEN: ${{ secrets.ZAPBOT_NPM_TOKEN }}
run: npx semantic-release