Skip to content

chore: update dockerfile, makefiles, scripts, and runtime code #23

chore: update dockerfile, makefiles, scripts, and runtime code

chore: update dockerfile, makefiles, scripts, and runtime code #23

Workflow file for this run

name: main
on:
pull_request:
push:
branches: [main]
jobs:
lin_check:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Set up Node 22
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: |
sudo mkdir -p $HOME
sudo mkdir -p $HOME/.local/bin
sudo chown runner -R $HOME
sudo apt install -y curl git-lfs wget tar
scversion="stable"
wget -qO- "https://github.com/koalaman/shellcheck/releases/download/${scversion?}/shellcheck-${scversion?}.linux.x86_64.tar.xz" | tar -xJv
cp "shellcheck-${scversion}/shellcheck" $HOME/.local/bin/
shellcheck --version
- name: lint and test
run: |
export CONTAINER="container"
make dev
make runChecks