Skip to content

Commit

Permalink
add steps back in
Browse files Browse the repository at this point in the history
  • Loading branch information
andogq committed Apr 15, 2024
1 parent 81d89da commit 06ed939
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,20 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout Repo
uses: actions/checkout@v4

- name: Setup Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x

- name: Install Dependencies
run: npm ci

- name: Generate Docs
run: npm run doc

- name: Setup pages
uses: actions/configure-pages@v4

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"build": "tsup ./src/index.ts --format esm,cjs --dts",
"doc": "typedoc ./src",
"test": "vitest",
"ci:release": "npm run build && npm run doc && changeset publish"
"ci:release": "npm run build && changeset publish"
},
"keywords": [],
"files": [
Expand Down

0 comments on commit 06ed939

Please sign in to comment.