This repository has been archived by the owner on Sep 29, 2024. It is now read-only.
feat: added test data to be automatically updated to db to ensure user can change and view dashboard data #1234
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: Run Test Suite | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
permissions: | |
contents: read | |
jobs: | |
tests: | |
name: Testing | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: Install dependencies | |
run: | | |
set -xe | |
npm i | |
- name: Testing | |
run: | | |
set -xe | |
npm run test | |
build: | |
name: Can build | |
runs-on: ubuntu-latest | |
needs: [tests] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: Install dependencies | |
run: | | |
set -xe | |
npm i | |
- name: Build | |
run: | | |
set -xe | |
npm run build | |
synced: | |
name: Ensure synced | |
runs-on: ubuntu-latest | |
needs: [tests] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: Ensure synced | |
run: | | |
set -xe | |
npm run sync:check | |
# It is recommended to require this check to pass before merging a pull request | |
check: | |
if: always() | |
name: Tests Successful | |
runs-on: ubuntu-latest | |
needs: [tests, build] | |
steps: | |
- name: Whether the whole test suite passed | |
uses: re-actors/[email protected] | |
with: | |
jobs: ${{ toJSON(needs) }} |