Skip to content

Commit

Permalink
ci: add testing
Browse files Browse the repository at this point in the history
  • Loading branch information
serge authored and serge committed Nov 8, 2023
1 parent 41c022d commit 07ebf8f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test
on: [pull_request]

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16
- uses: pnpm/action-setup@v2
with:
version: 7
run_install: false
- name: Install dependencies
run: pnpm install
- name: Linting
run: pnpm prettier:check && pnpm lint:check
- name: Build
run: pnpm build
- name: Test
run: pnpm test

0 comments on commit 07ebf8f

Please sign in to comment.