Update .gitea/workflows/ci.yml
This commit is contained in:
parent
5061a15550
commit
b302b2ee6a
1 changed files with 14 additions and 0 deletions
|
|
@ -8,6 +8,13 @@ jobs:
|
||||||
test-amd64:
|
test-amd64:
|
||||||
runs-on: [ubuntu-24.04, amd64-builder]
|
runs-on: [ubuntu-24.04, amd64-builder]
|
||||||
steps:
|
steps:
|
||||||
|
- name: Setup
|
||||||
|
run: |
|
||||||
|
apt update -y
|
||||||
|
apt install -y curl gnupg
|
||||||
|
curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
|
||||||
|
apt install -y nodejs
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v5
|
||||||
|
|
||||||
|
|
@ -20,6 +27,13 @@ jobs:
|
||||||
test-arm64:
|
test-arm64:
|
||||||
runs-on: [ubuntu-24.04, arm64-builder]
|
runs-on: [ubuntu-24.04, arm64-builder]
|
||||||
steps:
|
steps:
|
||||||
|
- name: Setup
|
||||||
|
run: |
|
||||||
|
apt update -y
|
||||||
|
apt install -y curl gnupg
|
||||||
|
curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
|
||||||
|
apt install -y nodejs
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v5
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue