Bump the batch-npm-deps group with 1 update #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [macos-12, ubuntu-22.04, windows-2022] | |
node: [16, 18, 20] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install packages | |
uses: ConorMacBride/[email protected] | |
with: | |
brew: unzip | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node }} | |
cache: "npm" | |
- name: Enable corepack | |
run: corepack enable | |
- name: Install dependencies | |
run: npm ci | |
- name: Link module | |
run: npm link grunt-nw-builder | |
- name: Run E2E tests | |
run: npm run e2e |