Skip to content

Commit

Permalink
CI added
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpocock committed Mar 3, 2023
1 parent 0208de3 commit 1428f6a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI
on:
push:
branches:
- "**"

jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: "pnpm"

- run: pnpm install --frozen-lockfile
- run: pnpm turbo lint build test

0 comments on commit 1428f6a

Please sign in to comment.