Skip to content

Merge pull request #58 from addyosmani/dependabot/npm_and_yarn/word-w… #171

Merge pull request #58 from addyosmani/dependabot/npm_and_yarn/word-w…

Merge pull request #58 from addyosmani/dependabot/npm_and_yarn/word-w… #171

Workflow file for this run

name: Tests
on:
push:
branches:
- master
- "!dependabot/**"
pull_request:
workflow_dispatch:
env:
FORCE_COLOR: 2
permissions:
contents: read
jobs:
run:
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [12, 14, 16, 18, 20]
steps:
- name: Clone repository
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install npm dependencies
run: npm ci
- name: Run tests
run: npm run test:coverage