This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
chore(deps-dev): Bump @typescript-eslint/parser from 7.16.1 to 8.9.0 #391
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |