chore(deps): update dependency rimraf to v5.0.9 #125
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Node.js | |
"on": | |
pull_request: | |
push: | |
branches: [main] | |
env: | |
JAVA_VERSION: "17" | |
JAVA_DISTRIBUTION: "microsoft" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
- name: npm test | |
run: | | |
npm ci | |
npm test --if-present | |
env: | |
CI: true | |
build: | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
- name: set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{env.JAVA_DISTRIBUTION}} | |
java-version: ${{env.JAVA_VERSION}} | |
- name: npm run build | |
run: | | |
npm ci | |
npm run build --if-present | |
env: | |
CI: true |