Skip to content

Commit

Permalink
enable other workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
arobsn committed Oct 25, 2024
1 parent b9f19ac commit ca4b770
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
name: CI

on:
pull_request:
push:
branches: ["master"]
# pull_request:
# branches: ["master"]
branches:
- "master"
tags:
- "!**"

concurrency:
group: ci-${{ github.event.pull_request.number || github.ref }}
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
name: Coverage

on:
pull_request:
push:
branches: ["master"]
# pull_request:
# branches: ["master"]
branches:
- "master"
tags:
- "!**"

jobs:
coverage:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,11 @@ jobs:
- name: Build
run: pnpm -r build

- name: Lint
run: pnpm run test:lint

- name: Test
run: pnpm run test:unit

- name: Publish
run: pnpx pkg-pr-new publish './packages/*' './plugins/*' --no-template --pnpm --compact

0 comments on commit ca4b770

Please sign in to comment.