Skip to content

Bump @typescript-eslint/eslint-plugin from 7.12.0 to 8.2.0 #754

Bump @typescript-eslint/eslint-plugin from 7.12.0 to 8.2.0

Bump @typescript-eslint/eslint-plugin from 7.12.0 to 8.2.0 #754

name: Build CI (Pull Request)
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Build with Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Set ENV
run: echo "NODE_OPTIONS=--no-experimental-fetch" >> $GITHUB_ENV
- run: npm ci
- run: npm run test
- name: Unset ENV
run: echo "NODE_OPTIONS=''" >> $GITHUB_ENV