2019-09-26 09:25:26 -04:00
|
|
|
name: CSS
|
2020-10-29 13:26:15 -04:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- "dependabot/**"
|
|
|
|
pull_request:
|
2021-12-02 16:02:11 -05:00
|
|
|
workflow_dispatch:
|
2020-10-29 13:26:15 -04:00
|
|
|
|
2019-09-26 09:25:26 -04:00
|
|
|
env:
|
2020-11-23 14:32:25 -05:00
|
|
|
FORCE_COLOR: 2
|
2021-10-13 08:26:48 -04:00
|
|
|
NODE: 16
|
2019-09-26 09:25:26 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
css:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
2022-03-02 09:51:46 -05:00
|
|
|
uses: actions/checkout@v3
|
2019-09-26 09:25:26 -04:00
|
|
|
|
2020-10-29 13:26:15 -04:00
|
|
|
- name: Set up Node.js
|
2022-03-01 08:19:34 -05:00
|
|
|
uses: actions/setup-node@v3
|
2019-09-26 09:25:26 -04:00
|
|
|
with:
|
|
|
|
node-version: "${{ env.NODE }}"
|
2021-07-19 11:38:49 -04:00
|
|
|
cache: npm
|
2019-09-26 09:25:26 -04:00
|
|
|
|
|
|
|
- name: Install npm dependencies
|
|
|
|
run: npm ci
|
|
|
|
|
|
|
|
- name: Build CSS
|
|
|
|
run: npm run css
|