Skip to content

Commit

Permalink
Run tests with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
exAspArk committed Feb 18, 2024
1 parent 6fa4279 commit 4dcdda1
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build

on:
push:
branches: [main]

jobs:
test-core:
name: Test core
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 21

- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 8
run_install: false

- name: Install dependencies
run: pnpm install

- name: Run tests
run: pnpm jest

0 comments on commit 4dcdda1

Please sign in to comment.