From e66d44a945a4fe331b70256bb3f2cff9ef794051 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 25 Sep 2024 09:35:28 +0200 Subject: [PATCH] chore: minor updates --- .github/workflows/release.yml | 6 +++--- .vscode/settings.json | 1 - pkgx.yaml | 2 +- test/index.test.ts | 4 ++-- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8c6e6f5..cbe5df8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,4 +1,4 @@ -name: Release +name: CI on: push: @@ -15,7 +15,7 @@ jobs: with: fetch-depth: 0 - - name: Set Node.js + - name: Setup Node.js uses: actions/setup-node@v4 with: registry-url: 'https://registry.npmjs.org' @@ -43,6 +43,6 @@ jobs: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - name: Create GitHub release - run: npx changelogithub + run: bunx changelogithub env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.vscode/settings.json b/.vscode/settings.json index d336891..9f02888 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,5 @@ { "typescript.tsdk": "node_modules/typescript/lib", - // Disable the default formatter, use eslint instead "prettier.enable": false, "editor.defaultFormatter": "biomejs.biome", "editor.formatOnSave": true, diff --git a/pkgx.yaml b/pkgx.yaml index e438cf2..7b4d211 100644 --- a/pkgx.yaml +++ b/pkgx.yaml @@ -1,2 +1,2 @@ dependencies: - bun.sh: ^1.1.27 + bun.sh: ^1.1.29 diff --git a/test/index.test.ts b/test/index.test.ts index 5bbfbd1..bfa2e7b 100644 --- a/test/index.test.ts +++ b/test/index.test.ts @@ -1,7 +1,7 @@ import { describe, expect, it } from 'bun:test' -describe('should', () => { - it('exported', () => { +describe('my package', () => { + it('should pass', () => { expect(1).toEqual(1) }) })