Skip to content

Commit

Permalink
ci: maybe bypass protected (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
BlairCurrey committed Dec 28, 2022
1 parent 2638f1b commit 34e0da6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- uses: actions/setup-node@v3
with:
node-version: "18.x"
- uses: pnpm/action-setup@v2
- run: pnpm install
env:
HUSKY: 0
- run: pnpm ci-install
- run: pnpm build
- run: pnpm test
- run: npx semantic-release
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "trpc-koa-adapter",
"version": "1.0.5",
"version": "1.1.0",
"author": "Blair Currey",
"description": "Koa adapter for tRPC",
"repository": {
Expand All @@ -10,6 +10,7 @@
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"ci-install": "HUSKY=0 pnpm install",
"build": "rm -rf ./dist && tsc",
"test": "jest",
"lint": "eslint --fix \"src/**/*.{js,ts}\"",
Expand Down

0 comments on commit 34e0da6

Please sign in to comment.