Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge build and PR workflows #9

Merged
merged 1 commit into from
Mar 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,25 @@
name: Build and Release
name: Build

on:
push:
branches:
- main
paths-ignore:
- README.md
- CHANGELOG.md
pull_request:
branches:
- main
paths-ignore:
- README.md
- CHANGELOG.md
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}

jobs:
build:
Build:
runs-on: ubuntu-latest
name: 🛠️ Build

Expand Down Expand Up @@ -39,6 +48,7 @@ jobs:
run: pnpm test

- name: 📣 Create Release Pull Request or Publish to npm
if: ${{ github.ref == 'refs/heads/main' }}
uses: changesets/action@v1
with:
title: "chore(release): version packages"
Expand Down
38 changes: 0 additions & 38 deletions .github/workflows/pr.yml

This file was deleted.