Skip to content

Commit

Permalink
chore: added build config w/ github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
wilfreud committed Mar 5, 2024
1 parent 7ec67d7 commit c94a5e2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI
on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: pnpm

- run: pnpm install --frozen-lockfile
- run: pnpm run lint && pnpm run build

0 comments on commit c94a5e2

Please sign in to comment.