This repository has been archived by the owner on May 15, 2024. It is now read-only.
Health Check #2389
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: Health Check | |
on: | |
schedule: | |
# At minute 0 past hour 0800 and 2000. | |
- cron: '0 8,20 * * *' | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [ '18.x' ] | |
name: Node ${{ matrix.node }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- run: | | |
git remote set-branches --add origin main | |
git fetch | |
- name: Node Install | |
with: | |
node-version: ${{ matrix.node }} | |
uses: actions/setup-node@v1 | |
- name: Installing Packages | |
env: | |
NODE_ENV: development | |
run: yarn install --frozen-lockfile | |
- name: Testing Packages | |
run: yarn test |