Merge pull request #471 from SquareTable/470-remove-viewedby-from-ima… #198
Workflow file for this run
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
name: ExtraCI | |
on: | |
push: | |
jobs: | |
calc-coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/[email protected] | |
- name: Setup Node.js 20.x | |
uses: actions/[email protected] | |
with: | |
node-version: 20.x | |
- name: Install packages | |
run: npm ci | |
- name: Calculate coverage | |
run: npx jest --coverage=true | |
extra-node-tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [18.x, 21.x, 22.x] | |
os: [ubuntu-22.04] | |
steps: | |
- name: Checkout Repository | |
uses: actions/[email protected] | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install packages | |
run: npm ci | |
- name: Run tests | |
run: npx jest |