Merge pull request #169 from marcomontalbano/update-website #324
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# act -j test --container-architecture linux/amd64 -P ubuntu-latest=ghcr.io/catthehacker/ubuntu:js-latest | |
name: Test | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- 'v*' | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [18.17.0, 18.x, 20.x, 22.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: Upload `coverage` artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage | |
path: coverage/lcov-report | |
- name: Export `coverage` | |
uses: coverallsapp/github-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
file: ./coverage/lcov.info # optional (default value) | |
# 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 |