Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

ci: Zephyr project setup #16

ci: Zephyr project setup

ci: Zephyr project setup #16

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: app
submodules: recursive
token: '${{ secrets.FIRMWARE80_BUILD }}'
# - name: Use Node.js (.nvmrc)
# uses: actions/setup-node@v4
# with:
# node-version-file: app/scripts/.nvmrc
#
# - name: Install node dependencies in scripts folder
# run: |
# cd app/scripts
# npm install
- name: Setup Zephyr project
uses: zephyrproject-rtos/action-zephyr-setup@v1
with:
app-path: app
toolchains: arm-zephyr-eabi
- name: workdir dir
run: pwd
if: always()
- name: list dir
run: tree -L 3 ..
if: always()