Skip to content

chore(deps-dev): Bump @typescript-eslint/eslint-plugin from 7.14.1 to 7.15.0 #90

chore(deps-dev): Bump @typescript-eslint/eslint-plugin from 7.14.1 to 7.15.0

chore(deps-dev): Bump @typescript-eslint/eslint-plugin from 7.14.1 to 7.15.0 #90

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
node-version:
- 18
- 20
architecture:
- x64
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
architecture: ${{ matrix.architecture }}
cache: yarn
- name: Install Dependencies
run: |
yarn
- name: Lint
run: |
yarn lint
- name: Build
run: |
yarn build
- name: Test
run: |
yarn coverage
- name: Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}