Skip to content

chore: bump eslint from 9.1.1 to 9.2.0 in the npm group #60

chore: bump eslint from 9.1.1 to 9.2.0 in the npm group

chore: bump eslint from 9.1.1 to 9.2.0 in the npm group #60

Workflow file for this run

name: ci
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
test:
strategy:
matrix:
os:
- macos-13
- ubuntu-22.04
- windows-2022
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Get Node version from Node manifest
run: echo "NODE_VER=$(curl -s https://nwjs.io/versions | jq -r ".versions[0].components.node")" >> $GITHUB_ENV
- name: Setup Node
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VER }}
cache: "npm"
- name: Enable corepack
run: corepack enable
- name: Install dependencies
run: npm ci
- name: Link module
run: npm link grunt-nw-builder
- name: Check for linting error
run: npm run lint
- name: Run tests
run: npm run test