-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: optimize workflows and test commands
- Loading branch information
Showing
3 changed files
with
37 additions
and
60 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,86 +1,62 @@ | ||
# .github/workflows/code-health.yml | ||
name: Code health checks | ||
|
||
name: Code health checks # name of the action (displayed in the github interface) | ||
|
||
on: # event list | ||
pull_request: # on a pull request to each of these branches | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
env: # environment variables (available in any part of the action) | ||
NODE_VERSION: 20 | ||
SUPABASE_URL: ${{ secrets.SUPABASE_URL }} | ||
SUPABASE_ANON_KEY: ${{ secrets.SUPABASE_ANON_KEY }} | ||
env: | ||
NODE_VERSION: 22 | ||
|
||
jobs: # list of things to do | ||
typecheck: | ||
name: Type Check # job name (unique id) | ||
runs-on: ubuntu-latest # on which machine to run | ||
steps: # list of steps | ||
jobs: | ||
setup: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install NodeJS | ||
uses: actions/setup-node@v2 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
|
||
- name: Cache Yarn Dependencies | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.yarn-cache | ||
node_modules | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-yarn- | ||
- name: Code Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
|
||
typecheck: | ||
needs: setup | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Type Checking | ||
run: yarn typecheck | ||
|
||
linting: | ||
name: Linting # job name (unique id) | ||
runs-on: ubuntu-latest # on which machine to run | ||
steps: # list of steps | ||
- name: Install NodeJS | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
|
||
- name: Code Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
|
||
needs: setup | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Code Linting | ||
run: yarn eslint:check | ||
|
||
formatting: | ||
name: Formatting # job name (unique id) | ||
runs-on: ubuntu-latest # on which machine to run | ||
steps: # list of steps | ||
- name: Install NodeJS | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
|
||
- name: Code Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
|
||
needs: setup | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Code Formatting | ||
run: yarn prettier:check | ||
|
||
testing: | ||
name: Testing # job name (unique id) | ||
runs-on: ubuntu-latest # on which machine to run | ||
steps: # list of steps | ||
- name: Install NodeJS | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
|
||
- name: Code Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
|
||
needs: setup | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Unit Tests | ||
run: yarn test |
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
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