Skip to content

Commit

Permalink
chore: add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOrangePuff committed Oct 24, 2024
1 parent f614b0c commit 062f469
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Test on Pull Request

on:
pull_request:
branches:
- '**' # Trigger on all branches

jobs:
install:
runs-on: ubuntu-latest
steps:
- name: 🧶 Install dependencies
uses: actions/cache@v3
with:
path: /usr/local/share/.cache/yarn/v6
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
run: yarn install

test:
runs-on: ubuntu-latest
needs: install
steps:
- name: ⚙️ Run Tests
run: |
FORCE_COLOR=true
DESTINATION_BRANCH=${{ github.event.pull_request.base.ref }} # Set branch
yarn nx affected:test --base=$DESTINATION_BRANCH --ci --code-coverage --parallel --max-parallel=3
code-quality:
runs-on: ubuntu-latest
needs: install
steps:
- name: 🕵️‍♀️ Code Quality
run: |
FORCE_COLOR=true
DESTINATION_BRANCH=${{ github.event.pull_request.base.ref }} # Set branch
yarn nx affected:lint --base=$DESTINATION_BRANCH --parallel --max-parallel=3
yarn nx format:check --base=$DESTINATION_BRANCH --parallel --max-parallel=3
yarn nx affected -t check-types --base=$DESTINATION_BRANCH --parallel --max-parallel=3

0 comments on commit 062f469

Please sign in to comment.