Skip to content

refactor(forms)!: move :user-valid, :user-invalid into a new package @form-validation #57

refactor(forms)!: move :user-valid, :user-invalid into a new package @form-validation

refactor(forms)!: move :user-valid, :user-invalid into a new package @form-validation #57

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
- run: deno task ci
publish:
name: Publish
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
- name: Run npm publish
run: |
deno task build
deno run --allow-all jsr:@libs/bundle/ts/cli/publish deno.jsonc --loglevel debug --npm.registry 'https://registry.npmjs.org' --npm.token '${{ secrets.NPM_TOKEN }}' --npm.access public