Skip to content

chore: bump @typescript-eslint/eslint-plugin from 7.12.0 to 7.13.0 #778

chore: bump @typescript-eslint/eslint-plugin from 7.12.0 to 7.13.0

chore: bump @typescript-eslint/eslint-plugin from 7.12.0 to 7.13.0 #778

Workflow file for this run

name: NodeJS
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 1
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- run: |
npm ci
npm run lint
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- run: |
npm ci
npm test
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- run: |
npm ci
npm run build