Skip to content

Commit

Permalink
chore: changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
chillios-dev committed Jul 18, 2024
1 parent 1c909c4 commit cea491e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions .changeset/fast-maps-invent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@swapkit/api": minor
"@swapkit/helpers": minor
---

Remove `ky` and replace it with base fetch
12 changes: 6 additions & 6 deletions .github/workflows/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
- develop

jobs:
build-and-test:
build-lint-test:
if: contains(github.event.pull_request.title, ':tada:') == false
runs-on: ubuntu-latest
steps:
Expand All @@ -27,15 +27,15 @@ jobs:
- name: Build
run: bun install; bun run build

- name: Lint
run: bun lint:ci

- name: Test
run: bun run test

- name: Lint
run: bun lint

publish:
if: contains(github.ref_name, 'develop') || contains(github.ref_name, 'develop') || contains(github.ref_name, 'nightly') || contains(github.ref_name, 'beta')
needs: [build-and-test]
needs: [build-lint-test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:

deploy-playground:
if: contains(github.ref_name, 'develop')
needs: [build-and-test]
needs: [build-lint-test]
runs-on: ubuntu-latest
permissions:
pages: write
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"playground:node": "bun --cwd ./playgrounds/node",
"playground:vite": "bun --cwd ./playgrounds/vite",
"postinstall": "lefthook install; bun lint:ws",
"publish-packages": "bun run build && bun lint && bun type-check && bun version-bump && bun changeset publish",
"publish-packages": "bun run build && bun version-bump && bun changeset publish",
"test": "bun --filter '*' test",
"test:coverage": "bun --filter '*' test:coverage",
"type-check": "bun --filter '*' type-check",
Expand Down

0 comments on commit cea491e

Please sign in to comment.