Skip to content

Bump test-summary/action from 1 to 2 #4

Bump test-summary/action from 1 to 2

Bump test-summary/action from 1 to 2 #4

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
tags:
- 'v*.*.*'
jobs:
test:
name: "test-node-${{ matrix.node-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16, 18, 20]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
env:
JEST_JUNIT_OUTPUT_DIR: ./test-reports/jest
JEST_JUNIT_OUTPUT_NAME: results.xml
JEST_JUNIT_CLASSNAME: "{filepath}"
run: yarn ci:test
- name: Upload test results
uses: actions/upload-artifact@v4
with:
name: test-results-node-${{ matrix.node-version }}
path: ./test-reports
- name: Test summary
uses: test-summary/action@v2
with:
paths: ./test-reports/jest/results.xml