docs(TESTING): add testing doc with rafiki.money #1096
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: PR Checks | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build | |
strategy: | |
fail-fast: false | |
matrix: | |
browser: [chrome, firefox] | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Environment setup | |
uses: ./.github/actions/setup | |
- name: Build | |
shell: bash | |
run: pnpm build ${{ matrix.browser }} --channel=nightly | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ github.event.pull_request.number }}-${{ matrix.browser }} | |
path: dist/${{ matrix.browser }}/ | |
if-no-files-found: error | |
lint: | |
name: Lint | |
runs-on: ubuntu-22.04 | |
continue-on-error: true | |
env: | |
FORCE_COLOR: true | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Environment setup | |
uses: ./.github/actions/setup | |
- run: pnpm format | |
if: always() | |
- run: pnpm lint | |
if: always() | |
- run: pnpm typecheck | |
if: always() | |
- name: Check spelling | |
uses: streetsidesoftware/cspell-action@v6 | |
if: always() | |
test: | |
name: Test | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Environment setup | |
uses: ./.github/actions/setup | |
- name: Test | |
run: pnpm test:ci |