Skip to content

Commit

Permalink
chore: instantiate workflows (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
ignatiusmb authored Aug 29, 2023
1 parent 9859820 commit 821c453
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/quality.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: QA

on:
push:
branches: [master]
pull_request:

jobs:
check:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm

- run: pnpm install
- run: pnpm check

# test:
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# node-version: [16, 18, 20]
# os: [ubuntu-latest, windows-latest, macOS-latest]

# steps:
# - uses: actions/checkout@v3
# - uses: pnpm/action-setup@v2
# - uses: actions/setup-node@v3
# with:
# node-version: ${{ matrix.node-version }}
# cache: pnpm

# - run: pnpm install
# - run: pnpm test

0 comments on commit 821c453

Please sign in to comment.