Skip to content

Commit

Permalink
Enable test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandrHoroshih committed Apr 30, 2023
1 parent f8312dd commit 804c5ce
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Test Package

on: [push]

jobs:
test-package:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup pnpm
uses: pnpm/action-setup@v2

- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x

- name: Install dependencies
run: pnpm install

- name: Run tests
run: pnpm test
env:
CI: true

0 comments on commit 804c5ce

Please sign in to comment.