Bump CSSUoB/pr-auto-updater from 2.2.3 to 2.2.4 in the gh-actions gro… #182
This file contains hidden or 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: Tests | |
on: push | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Set up Node.js 23.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 23.x | |
- name: Enable corepack | |
run: corepack enable | |
- name: Install dependencies | |
run: yarn install | |
- name: Run tests | |
run: yarn run test --ci --reporters=default --reporters=jest-junit | |
env: | |
CI: true | |
- name: Upload coverage | |
uses: codecov/codecov-action@v5 | |
with: | |
use_oidc: true | |
- name: Upload test results to Codecov | |
if: ${{ !cancelled() }} | |
uses: codecov/test-results-action@v1 | |
with: | |
use_oidc: true | |
files: ./junit.xml |