Skip to content

Commit

Permalink
chores(effect-validator): Add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gunta committed Jul 9, 2024
1 parent ac4e130 commit 93c01a1
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci-effect-validator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: ci-effect-validator
on:
push:
branches: [main]
paths:
- 'packages/effect-validator/**'
pull_request:
branches: ['*']
paths:
- 'packages/effect-validator/**'

jobs:
ci:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./packages/effect-validator
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn test

0 comments on commit 93c01a1

Please sign in to comment.