CI: Skip dependabot PR branches. (#32006)
Also, reword Node.js setup step
This commit is contained in:
parent
5076170d76
commit
e993ca76e0
8 changed files with 55 additions and 14 deletions
10
.github/workflows/css.yml
vendored
10
.github/workflows/css.yml
vendored
|
|
@ -1,5 +1,11 @@
|
|||
name: CSS
|
||||
on: [push, pull_request]
|
||||
|
||||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
- "dependabot/**"
|
||||
pull_request:
|
||||
|
||||
env:
|
||||
CI: true
|
||||
NODE: 12.x
|
||||
|
|
@ -12,7 +18,7 @@ jobs:
|
|||
- name: Clone repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Set Node.js version
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: "${{ env.NODE }}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue