Skip to content

Commit

Permalink
ci: add qa
Browse files Browse the repository at this point in the history
  • Loading branch information
mishamyrt committed Apr 19, 2024
1 parent f1bce62 commit 3d0f7aa
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Quality Assurance

on:
- push

jobs:
test:
env:
PNPM_VERSION: '9.0.4'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
run_install: |
cwd: ./
args: [--frozen-lockfile]
version: ${{ env.PNPM_VERSION }}

- name: Check code style
run: pnpm lint

- name: Check library build
run: pnpm build

- name: Run tests
run: pnpm test

0 comments on commit 3d0f7aa

Please sign in to comment.