chore: separate the build_test into two different jobs to save time #1
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
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Test | |
on: | |
push: | |
branches: | |
- main | |
- release/* | |
pull_request: | |
branches: | |
- main | |
- release/* | |
# Allows GitHub to use this workflow to validate the merge queue | |
merge_group: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
env: | |
NODE_OPTIONS: --max_old_space_size=16384 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
cache: npm | |
cache-dependency-path: ./package-lock.json | |
- run: npm ci --no-audit --no-fund --prefer-offline | |
- run: npx playwright install --with-deps | |
- run: npm test | |
- name: Upload Code Coverage reports | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: code-coverage | |
path: coverage/ | |
retention-days: 30 |