Skip to content

chore(deps): bump actions/checkout from 4.2.0 to 4.2.1 in /.github/workflows in the gha group #890

chore(deps): bump actions/checkout from 4.2.0 to 4.2.1 in /.github/workflows in the gha group

chore(deps): bump actions/checkout from 4.2.0 to 4.2.1 in /.github/workflows in the gha group #890

Workflow file for this run

name: v3
on:
pull_request:
branches:
- v3
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
e2e:
strategy:
matrix:
os:
- macos-13
- ubuntu-22.04
- windows-2022
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4.2.1
- 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.4
with:
node-version: ${{ env.NODE_VER }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Check for linting errors
run: npm run lint
- name: Link module
run: npm link nw-builder
- name: Prepare test environment
run: npm run test:prep
- name: Run unit tests
run: npm run test:unit
# - name: Run Tape tests
# run: npm run test:tape
# - name: Run ChromeDriver tests
# run: npm run test:sanity