Update .github/workflows/build_pull_request.yml

This commit is contained in:
AlmightyHak 2025-06-04 02:27:51 -05:00
parent 1a710003ed
commit 91b664183c

View file

@ -17,7 +17,20 @@ jobs:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
outputs: outputs:
individualMatrix: ${{ steps.generate-matrices.outputs.individualMatrix }} individualMatrix: ${{ steps.generate-matrices.outputs.individualMatrix }}
steps: steps:
- name: Install Node.js manually
run: |
apt-get update
apt-get install -y curl
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
apt-get install -y nodejs
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test
- name: Clone repo - name: Clone repo
uses: https://github.com/actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 uses: https://github.com/actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4