Skip to content

Update all dependencies – drop support for Node.js 12 and 14 #256

Update all dependencies – drop support for Node.js 12 and 14

Update all dependencies – drop support for Node.js 12 and 14 #256

Workflow file for this run

name: Test
on:
push:
branches:
- '**'
tags-ignore:
- 'v*'
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16.14.0, 16.x, 18.x, 20.x, 21.x]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Node 🧰
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install 📦
run: yarn --immutable
- name: Lint 🔍
run: yarn lint
- name: Test 🐛
run: yarn test
coverage:
needs: [test]
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Node 🧰
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install 📦
run: yarn --immutable
- name: Coverage 🌈
run: yarn coverage
- name: Export `coverage`
uses: coverallsapp/github-action@v2.2.3
with:
github-token: ${{ secrets.github_token }}
file: ./coverage/lcov.info # optional (default value)
- name: Upload `coverage` artifact
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage/lcov-report
# stryker:
# needs: [test]
# runs-on: ubuntu-latest
# steps:
# - name: Checkout 🛎️
# uses: actions/checkout@v3
# - name: Node 🧰
# uses: actions/setup-node@v3
# with:
# node-version: 18.x
# - name: Install 📦
# run: yarn --immutable
# - name: Stryker 👾
# run: yarn stryker
# - name: Upload `stryker` artifact
# uses: actions/upload-artifact@v3
# with:
# name: stryker
# path: reports/mutation/html