Skip to content

Bump eslint-plugin-n from 16.1.0 to 16.3.0 #123

Bump eslint-plugin-n from 16.1.0 to 16.3.0

Bump eslint-plugin-n from 16.1.0 to 16.3.0 #123

Workflow file for this run

name: Main CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16.x
- 18.x
steps:
- uses: actions/checkout@v3
- name: Touch Lock File
run: touch yarn.lock
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install
run: yarn install
- name: Linter
run: yarn lint
- name: Test
run: yarn test