Merge branch 'main' into feature/separate-settings-react #1721
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: Simon Schneegans <code@simonschneegans.de> | |
# SPDX-License-Identifier: CC0-1.0 | |
name: Checks | |
on: | |
pull_request: | |
types: [opened, reopened] | |
push: | |
branches: | |
- '**' | |
jobs: | |
test: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install Dependencies | |
run: | | |
sudo apt install libx11-dev libxtst-dev libwayland-dev libxkbcommon-dev | |
npm ci | |
- name: Run Tests | |
run: npm run test | |
eslint: | |
name: ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install Dependencies | |
run: | | |
sudo apt install libx11-dev libxtst-dev libwayland-dev libxkbcommon-dev | |
npm ci | |
- name: Run ESLint | |
run: npm run lint | |
prettier: | |
name: Prettier | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install Dependencies | |
run: | | |
sudo apt install libx11-dev libxtst-dev libwayland-dev libxkbcommon-dev | |
npm ci | |
- name: Run Prettier | |
run: npm run prettier | |
reuse: | |
name: REUSE | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: REUSE Compliance Check | |
uses: fsfe/reuse-action@v4 |