Skip to content

fix(packages): downgrade eslint from v9 to v8 #237

fix(packages): downgrade eslint from v9 to v8

fix(packages): downgrade eslint from v9 to v8 #237

Workflow file for this run

name: ts-add-js-extension-ci-cd
on: [push, pull_request]
jobs:
all:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node: [18, 20]
os: [ubuntu-latest, windows-latest]
threads: [4]
name: Test with Node ${{ matrix.node-version }} on ${{ matrix.os }}
steps:
- name: Checkout Code
uses: actions/checkout@v3
- uses: pnpm/action-setup@v4
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install Depedencies
run: pnpm i
- name: Run Linter
run: pnpm lint
- name: Run Format Check
run: pnpm format-check
- name: Run Tests
run: pnpm test
- name: Run Build
run: pnpm build