Manually install node this time
This commit is contained in:
parent
9a4e2b3ca5
commit
8850e08f5d
1 changed files with 7 additions and 7 deletions
|
@ -6,15 +6,15 @@ jobs:
|
||||||
build-run:
|
build-run:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
container:
|
||||||
image: alpine
|
image: rust
|
||||||
steps:
|
steps:
|
||||||
- name: Get Dependancies
|
- name: Update package repos
|
||||||
run: apk add --no-cache musl-dev curl gcc deno git nodejs pkgconfig openssl openssl-dev openssl-libs-static
|
run: apt update
|
||||||
- name: download Rustup
|
- name: Install Node using apt
|
||||||
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly
|
run: apt install nodejs -y
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Build using Cargo
|
- name: Build using Cargo
|
||||||
run: ~/.cargo/bin/cargo build --verbose
|
run: cargo build --verbose
|
||||||
- name: Run unit tests
|
- name: Run unit tests
|
||||||
run: ~/.cargo/bin/cargo test --verbose
|
run: cargo test --verbose
|
||||||
|
|
Loading…
Add table
Reference in a new issue