2019-09-26 15:25:26 +02:00
|
|
|
name: CSS
|
2020-10-29 18:26:15 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-03-22 08:03:51 +01:00
|
|
|
branches:
|
|
|
|
- main
|
2020-10-29 18:26:15 +01:00
|
|
|
pull_request:
|
2021-12-02 22:02:11 +01:00
|
|
|
workflow_dispatch:
|
2020-10-29 18:26:15 +01:00
|
|
|
|
2019-09-26 15:25:26 +02:00
|
|
|
env:
|
2020-11-23 20:32:25 +01:00
|
|
|
FORCE_COLOR: 2
|
2023-12-17 09:14:49 +01:00
|
|
|
NODE: 20
|
2019-09-26 15:25:26 +02:00
|
|
|
|
2022-12-16 08:20:12 +01:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2019-09-26 15:25:26 +02:00
|
|
|
jobs:
|
|
|
|
css:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
2023-09-13 11:47:26 +02:00
|
|
|
uses: actions/checkout@v4
|
2022-11-09 08:21:55 +01:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
2019-09-26 15:25:26 +02:00
|
|
|
|
2020-10-29 18:26:15 +01:00
|
|
|
- name: Set up Node.js
|
2023-11-02 06:48:47 +01:00
|
|
|
uses: actions/setup-node@v4
|
2019-09-26 15:25:26 +02:00
|
|
|
with:
|
|
|
|
node-version: "${{ env.NODE }}"
|
2021-07-19 17:38:49 +02:00
|
|
|
cache: npm
|
2019-09-26 15:25:26 +02:00
|
|
|
|
|
|
|
- name: Install npm dependencies
|
|
|
|
run: npm ci
|
|
|
|
|
|
|
|
- name: Build CSS
|
|
|
|
run: npm run css
|
2022-12-25 11:41:54 +01:00
|
|
|
|
|
|
|
- name: Run CSS tests
|
|
|
|
run: npm run css-test
|