feat(deps): bump nw-builder from 4.9.0 to 4.10.0 in the npm group #11
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: e2e | |
on: | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
os: | |
- macos-14 | |
- ubuntu-22.04 | |
- windows-2022 | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4.1.7 | |
- 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/setup-node@v4.0.3 | |
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: Run tests | |
run: npm run test |