Skip to content

Commit

Permalink
add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-aurele-besner committed Jun 3, 2024
1 parent d19291a commit 0fcd911
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build

on: [push, pull_request]

jobs:
build-and-test:
runs-on: ubuntu-latest
name: Build all packages and run tests
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Build all packages 🔧
run: |
yarn set version berry
yarn install
yarn build
- name: Run tests 🧪
run: yarn test

0 comments on commit 0fcd911

Please sign in to comment.