2019-09-26 15:25:26 +02:00
|
|
|
name: CSS
|
2020-10-29 18:26:15 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- "dependabot/**"
|
|
|
|
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
|
2022-11-13 15:19:29 +01:00
|
|
|
NODE: 18
|
2019-09-26 15:25:26 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
css:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
2022-03-02 15:51:46 +01:00
|
|
|
uses: actions/checkout@v3
|
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
|
2022-03-01 14:19:34 +01:00
|
|
|
uses: actions/setup-node@v3
|
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
|