Skip to content

Bump semver from 5.7.2 to 7.5.4 #4

Bump semver from 5.7.2 to 7.5.4

Bump semver from 5.7.2 to 7.5.4 #4

Workflow file for this run

name: ci
on:
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
- name: Get Node version from Node manifest
run: |
echo "NODE_VER=$(jq -r '.engines.node' package.json | sed 's/v//' )" >> $GITHUB_ENV
- 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: Run test
run: npm test