Skip to content

Fix GitHub Actions workflows: standardize runner config and remove du… #46

Fix GitHub Actions workflows: standardize runner config and remove du…

Fix GitHub Actions workflows: standardize runner config and remove du… #46

Workflow file for this run

name: Unit tests

Check failure on line 1 in .github/workflows/unit.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/unit.yml

Invalid workflow file

(Line: 8, Col: 6): Unexpected value ''
on:
push:
branches: [main]
pull_request:
jobs:
# unit_tests:
# name: Unit tests
# runs-on: ubuntu-latest
# timeout-minutes: 5
# steps:
# - name: Cancel previous runs
# uses: styfle/cancel-workflow-action@0.11.0
# with:
# access_token: ${{ github.token }}
# - uses: actions/checkout@v3
# - name: Set up steps
# uses: ./.github/actions/setup-steps
# - name: Unit tests
# run: yarn test:unit:coverage
# - name: Upload Jest HTML report
# if: failure()
# uses: actions/upload-artifact@v4
# with:
# name: jest-unit-tests-report
# path: reports/jest-report-unit.html
# retention-days: 1
# - name: Upload unit tests coverage report
# uses: actions/upload-artifact@v4
# with:
# name: jest-unit-coverage-report
# path: test-coverage/unit
# retention-days: 1