Update .github/workflows/build_pull_request.yml
This commit is contained in:
parent
a0be04784a
commit
91cbcaef57
1 changed files with 10 additions and 6 deletions
14
.github/workflows/build_pull_request.yml
vendored
14
.github/workflows/build_pull_request.yml
vendored
|
@ -18,12 +18,16 @@ jobs:
|
||||||
outputs:
|
outputs:
|
||||||
individualMatrix: ${{ steps.generate-matrices.outputs.individualMatrix }}
|
individualMatrix: ${{ steps.generate-matrices.outputs.individualMatrix }}
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Node.js container
|
- name: Checkout code manually
|
||||||
run: |
|
run: git clone https://kohiden.xyz/AlmightyHak/extensions-source.git .
|
||||||
docker run --rm -v "$PWD":/app -w /app node:18-bullseye sh -c "npm install && npm test"
|
|
||||||
|
|
||||||
- name: Clone repo
|
- name: Run in Node.js container manually
|
||||||
uses: https://github.com/actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
|
run: |
|
||||||
|
docker run --rm \
|
||||||
|
-v "$(pwd)":/app \
|
||||||
|
-w /app \
|
||||||
|
node:18-bullseye \
|
||||||
|
sh -c "npm install && npm test"
|
||||||
|
|
||||||
- name: Validate Gradle Wrapper
|
- name: Validate Gradle Wrapper
|
||||||
uses: https://github.com/gradle/wrapper-validation-action@a494d935f4b56874c4a5a87d19af7afcf3a163d0 # v2
|
uses: https://github.com/gradle/wrapper-validation-action@a494d935f4b56874c4a5a87d19af7afcf3a163d0 # v2
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue