Merge pull request 'OAuth API screenshots for dark theme' from featur… #792
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: Audit | |
on: | |
pull_request: | |
push: | |
workflow_dispatch: | |
jobs: | |
audit: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
# - windows-latest | |
runs-on: ${{matrix.os}} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup mise | |
uses: jdx/mise-action@v2 | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build Packages | |
run: pnpm build | |
- name: Run Linter | |
run: pnpm lint | |
- name: Run Tests | |
run: pnpm test |