Skip to content

Merge pull request #174 from wimpyprogrammer/dependabot/npm_and_yarn/… #606

Merge pull request #174 from wimpyprogrammer/dependabot/npm_and_yarn/…

Merge pull request #174 from wimpyprogrammer/dependabot/npm_and_yarn/… #606

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
schedule:
# 00:00 on Saturdays
- cron: '0 0 * * SAT'
workflow_dispatch:
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
jest-version: [24, 25, 26, 27, 28, latest]
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: '2'
- uses: actions/setup-node@v4
with:
node-version: '14'
- run: yarn --frozen-lockfile
- run: yarn add jest@${{ matrix.jest-version }}
- name: Test on Jest@${{ matrix.jest-version }}
run: yarn test