Skip to content

ci: Splits test execution and coverage reporting #603

ci: Splits test execution and coverage reporting

ci: Splits test execution and coverage reporting #603

Workflow file for this run

name: "Build and Test"
on:
pull_request:
jobs:
build-and-test:
permissions:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: "Install Node"
uses: actions/setup-node@v3
with:
node-version: "16.x"
- name: "Install Deps"
run: npm install
- name: "Build"
run: npm run build
- name: "Test"
run: npm run test:coverage
# Remove node_modules to see if this action runs entirely compiled
- name: "Remove Node Modules"
run: rm -rf node_modules
- name: "Upload Coverage"
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage
# - name: "Test Working Directory Option"
# uses: ./
# with:
# working-directory: "./test/mockReports"
# name: "Mock Reports"
# - name: "Test Default Action"
# # run step also on failure of the previous step
# if: always()
# uses: ./
# with:
# file-coverage-mode: "all"
# name: "Root"