Skip to content

Commit

Permalink
feat: add build.yml ci run
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmatteomanf committed Apr 21, 2024
1 parent 9b79584 commit fb4312d
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Tests

on:
push:
pull_request:

defaults:
run:
shell: bash

env:
FORCE_COLOR: true

jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4

- name: Setup PNPM
uses: pnpm/action-setup@v3

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: "pnpm"

- name: Install dependencies
run: pnpm install

- name: Build Packages
run: pnpm run build

0 comments on commit fb4312d

Please sign in to comment.