mars-v2-frontend/.github/workflows/test-runner.yaml

29 lines
614 B
YAML
Raw Normal View History

2023-05-08 15:55:18 +00:00
name: Test Runner
on:
push:
branches: [develop, main]
pull_request:
branches: [develop, main]
jobs:
build:
2023-05-11 12:02:58 +00:00
name: Tests
2023-05-08 15:55:18 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
2023-05-11 09:45:19 +00:00
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test
2023-05-11 12:02:58 +00:00
# - name: Upload coverage reports to Codecov
# uses: codecov/codecov-action@v3
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# files: coverage/lcov.info