mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
37dc6e1031
Run it for all pull requests, the master branch, and any branches that end with `-ci`.
43 lines
1013 B
YAML
43 lines
1013 B
YAML
name: CSS
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- "**-ci"
|
|
pull_request:
|
|
branches:
|
|
- "**"
|
|
|
|
env:
|
|
CI: true
|
|
NODE: 10.x
|
|
|
|
jobs:
|
|
css:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Clone repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set Node.js version
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: "${{ env.NODE }}"
|
|
|
|
- name: Set up npm cache
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.npm
|
|
key: ${{ runner.os }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('.github/workflows/css.yml') }}
|
|
restore-keys: |
|
|
${{ runner.OS }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('.github/workflows/css.yml') }}
|
|
${{ runner.OS }}-node-v${{ env.NODE }}-
|
|
|
|
- name: Install npm dependencies
|
|
run: npm ci
|
|
|
|
- name: Build CSS
|
|
run: npm run css
|