Skip to content

Merge pull request #73 from ecubus/71-hex-file-support-for-nxp-uds-bo… #22

Merge pull request #73 from ecubus/71-hex-file-support-for-nxp-uds-bo…

Merge pull request #73 from ecubus/71-hex-file-support-for-nxp-uds-bo… #22

Workflow file for this run

name: Build-Linux
on:
push:
branches: [master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # Not needed if lastUpdated is not enabled
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm # or pnpm / yarn
- name: Install dependencies
run: npm install
- name: Build with VitePress
run: npm run docs:build
- name: Build docan
run: npm run docan
- name: Build dolin
run: npm run dolin
- name: Build worker
run: npm run worker
- name: Build api
run: npm run api
- name: Build cli
run: npm run cli:build:linux
- name: Build APP
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run build:linux