Skip to content

Merge pull request #175 from spatie/dependabot/npm_and_yarn/lint-stag… #306

Merge pull request #175 from spatie/dependabot/npm_and_yarn/lint-stag…

Merge pull request #175 from spatie/dependabot/npm_and_yarn/lint-stag… #306

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node-version: [14, 16]
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Get yarn cache directory path
id: npm-cache-dir-path
run: echo "::set-output name=dir::$(npm config get cache)"
- name: Cache dependencies
uses: actions/cache@v3
id: npm-cache
with:
path: ${{ steps.npm-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-node-${{ matrix.node-version }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{ matrix.node-version }}-npm-
- name: Install dependencies
run: npm install
- name: Verify the build process
run: npm run build:verify
- name: Run the tests with coverage
run: npm run test -- --coverage --coverageReporters json