Skip to content

Commit

Permalink
chore: add tests to the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
art049 committed Apr 14, 2023
1 parent 4c7a20f commit c9a7ea5
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,24 @@ jobs:
with:
name: dist
path: dist/

tests:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set Node.js 16.x
uses: actions/[email protected]
with:
node-version: 16.x

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 7
- name: Install dependencies
run: pnpm install --frozen-lockfile --prefer-offline

- name: Run tests
run: pnpm test

0 comments on commit c9a7ea5

Please sign in to comment.