Skip to content

chore: save event as staging after validation #30

chore: save event as staging after validation

chore: save event as staging after validation #30

Workflow file for this run

on:
release:
types: [published]
pull_request:
branches: '**'
paths-ignore:
- '**.md'
push:
branches:
- main
paths-ignore:
- '**.md'
name: my-workflow
jobs:
unit-tests:
name: Code Quality Checks(lint, test, tsc)
runs-on: ubuntu-latest
steps:
# ...
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
# run any `bun` or `bunx` command
- run: bun install
- run: bun lint
- run: bun tsc
- run: bun test