Skip to content

test-schedule

test-schedule #24

Workflow file for this run

name: Check Build
on:
pull_request:
branches: [ main ]
jobs:
cache-deps-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16.x ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: ./package-lock.json
- name: Install dependencies
run: npm ci
- name: Run print-test job
run: npm run print-test