Skip to content

chore(deps): update dependency eslint-plugin-import to v2.31.0 #524

chore(deps): update dependency eslint-plugin-import to v2.31.0

chore(deps): update dependency eslint-plugin-import to v2.31.0 #524

Workflow file for this run

name: Node CI
on:
pull_request:
branches: [ main ]
env:
NODE_VERSION: 20.x
jobs:
install:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
- run: corepack enable
- name: Install
run: yarn install --frozen-lockfile
build:
runs-on: ubuntu-latest
needs: install
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
- run: corepack enable
- name: Install
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
lint:
runs-on: ubuntu-latest
needs: install
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
- run: corepack enable
- name: Install
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint