Skip to content

task: /boot/config.txt is not an symlink anymore #2643

task: /boot/config.txt is not an symlink anymore

task: /boot/config.txt is not an symlink anymore #2643

Workflow file for this run

name: Build
on:
push:
branches:
- dev
- stable4
pull_request:
branches:
- dev
- stable4
workflow_dispatch:
jobs:
build:
strategy:
matrix:
node: [18]
python: [3.11]
os: [ubuntu-latest, macos-11]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
with:
submodules: true
- name: Setup node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install modules
run: npm install
- name: Build
run: npm run build
- name: Status
run: |
git status
git status | grep -q "nothing to commit, working tree clean"