Skip to content

Commit

Permalink
test gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
loeiks committed Feb 18, 2024
1 parent a8e6921 commit 30a34c5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '20'

- name: Install dependencies
run: npm install
Expand All @@ -28,7 +28,7 @@ jobs:
steps:
- name: TypeScript compile
run: npm run tsc
working-directory: app
working-directory: /app

generate-docs:
needs: tsc
Expand All @@ -37,7 +37,7 @@ jobs:
steps:
- name: Generate documentation
run: npx typedoc
working-directory: app
working-directory: /app

deploy-docs:
needs: generate-docs
Expand All @@ -54,6 +54,6 @@ jobs:
steps:
- name: Publish to NPM
run: npm publish
working-directory: app
working-directory: /app
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 30a34c5

Please sign in to comment.