Skip to content

Bump actions/checkout from 3.5.2 to 3.5.3 #13

Bump actions/checkout from 3.5.2 to 3.5.3

Bump actions/checkout from 3.5.2 to 3.5.3 #13

Workflow file for this run

name: Run Semver Action Tests
on:
pull_request:
paths:
- 'actions/next-semver/**'
- '.github/workflows/test-semver.yml'
push:
branches:
- master
paths:
- 'actions/next-semver/**'
permissions:
contents: read
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- name: Setup Node
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c
with:
node-version-file: 'actions/next-semver/.nvmrc'
cache: 'npm'
cache-dependency-path: 'actions/next-semver/package-lock.json'
- name: Install dependencies
working-directory: 'actions/next-semver'
run: npm ci
- name: Run unit tests
working-directory: 'actions/next-semver'
run: npm run test