diff --git a/.github/workflows/ci-effect-validator.yml b/.github/workflows/ci-effect-validator.yml new file mode 100644 index 00000000..810b6015 --- /dev/null +++ b/.github/workflows/ci-effect-validator.yml @@ -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