Skip to content

Commit bfd78e8

Browse files
committed
simplify ci
1 parent 7f9b0b9 commit bfd78e8

File tree

5 files changed

+6
-307
lines changed

5 files changed

+6
-307
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 0 additions & 124 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 0 additions & 100 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/question.yml

Lines changed: 0 additions & 68 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,9 @@ concurrency:
77
cancel-in-progress: true
88

99
jobs:
10-
test:
11-
name: Test on ${{ matrix.os }}
12-
runs-on: ${{ matrix.os }}
13-
strategy:
14-
fail-fast: false
15-
matrix:
16-
os: [ubuntu-latest, macos-latest, windows-latest]
10+
ci:
11+
name: CI
12+
runs-on: ubuntu-latest
1713

1814
steps:
1915
- name: Checkout code
@@ -27,14 +23,11 @@ jobs:
2723
- name: Install dependencies
2824
run: bun install --frozen-lockfile
2925

30-
- name: Build
31-
run: bun run build
32-
3326
- name: Type check
3427
run: bun run type-check
3528

3629
- name: Lint
3730
run: bun run lint
3831

39-
- name: Run tests
40-
run: bun run test
32+
- name: Build
33+
run: bun run build

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ jobs:
3333
- name: Lint
3434
run: bun run lint
3535

36-
- name: Run tests
37-
run: bun run test
38-
3936
- name: Build
4037
run: bun run build
4138

@@ -47,6 +44,7 @@ jobs:
4744

4845
- name: Publish to npm
4946
run: bun publish --access public
47+
working-directory: packages/astchunk
5048
env:
5149
NPM_CONFIG_TOKEN: ${{ secrets.NPM_TOKEN }}
5250
NPM_CONFIG_PROVENANCE: true

0 commit comments

Comments
 (0)