Skip to content

Commit

Permalink
dev(#8): lint & build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jannis-baum committed Jul 25, 2023
1 parent 8a629f7 commit ae6380a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on: push

jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: yarn
- run: yarn lint

build:
name: Build
needs: [lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: yarn
- run: yarn build

0 comments on commit ae6380a

Please sign in to comment.