We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f34978b commit 2c40cecCopy full SHA for 2c40cec
1 file changed
.github/workflows/blank.yml
@@ -1,13 +1,24 @@
1
name: CI
2
-
3
-on: [push]
+on:
+ push:
4
+ branches:
5
+ - master
6
+ pull_request:
7
8
9
+ paths-ignore:
10
+ - '.gitignore'
11
+ - '.npmignore'
12
+ - '*.md'
13
14
jobs:
15
build:
16
runs-on: ubuntu-latest
17
steps:
18
+ - name: Install Node
19
+ uses: actions/setup-node@v1
20
+ with:
21
+ node-version: '12.x'
22
- uses: actions/checkout@v1
23
- name: Run build
24
run: npm install && npm run build
0 commit comments