Skip to content

fix: pin sample resume canonical URL version #155

fix: pin sample resume canonical URL version

fix: pin sample resume canonical URL version #155

Workflow file for this run

name: Latest
on: [push, pull_request]
jobs:
verify:
name: Verify
runs-on: ubuntu-latest
strategy:
matrix:
node: [10, 12]
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Cache
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.OS }}-npm-cache-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-npm-cache-
- name: Install
run: npm ci
- name: Test
run: npm t