Skip to content

Commit

Permalink
Try adding Node build (#115)
Browse files Browse the repository at this point in the history
* Try adding Node build

* Fix working directory

* Fix again

* Try again

* Add missing checkout step
  • Loading branch information
knutwannheden authored Sep 24, 2024
1 parent 74ff6ef commit bfab21a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,18 @@ jobs:
ossrh_token: ${{ secrets.OSSRH_TOKEN }}
ossrh_signing_key: ${{ secrets.OSSRH_SIGNING_KEY }}
ossrh_signing_password: ${{ secrets.OSSRH_SIGNING_PASSWORD }}

node-build:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: openrewrite/package-lock.json
- run: npm ci
working-directory: openrewrite

0 comments on commit bfab21a

Please sign in to comment.