Switch test suite to vitest #71
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: Metrics report | |
on: [pull_request] | |
jobs: | |
metrics-report: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.11.1 | |
- name: Restore node_modules cache | |
uses: actions/cache/restore@v4 | |
with: | |
path: node_modules | |
key: yarn-node-20-lock-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
yarn-node-20-lock- | |
- run: yarn --frozen-lockfile | |
- name: Save node_modules cache | |
uses: actions/cache/save@v4 | |
with: | |
path: node_modules | |
key: yarn-node-20-lock-${{ hashFiles('yarn.lock') }} | |
- name: Use node_modules cache for metrics-report-action | |
uses: actions/cache@v4 | |
with: | |
path: .github/actions/metrics-report/node_modules | |
key: yarn-node-20-metrics-report-action-lock-${{ hashFiles('.github/actions/metrics-report/yarn.lock') }} | |
restore-keys: | | |
yarn-node-20-metrics-report-action-lock- | |
- run: yarn --cwd .github/actions/metrics-report install --frozen-lockfile | |
- uses: ./.github/actions/metrics-report |