- Updated test actions Signed-off-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com>
45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
name: Test
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test_linux:
|
|
name: Test Linux
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [ 18.x, 20.x, 21.x, latest ]
|
|
steps:
|
|
- name: Disable sudo PATH replace
|
|
run: |
|
|
sudo cat /etc/sudoers | grep -v "secure_path=" > /tmp/.sudoers.tmp
|
|
cat /tmp/.sudoers.tmp | sudo tee /etc/sudoers
|
|
rm /tmp/.sudoers.tmp
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version-file: addon/userspace/go/go.mod
|
|
go-version: ">=1.22"
|
|
|
|
- name: Install build dependencies
|
|
run: sudo apt update && sudo apt install -y build-essential cmake
|
|
|
|
- name: Install node dependencies
|
|
run: npm install --no-save --no-audit --no-fund --ignore-scripts
|
|
|
|
- name: Run tests
|
|
run: npm run build && sudo node --no-warnings --loader ts-node/esm src/index_test.js
|