We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9bd80e commit c13d2f2Copy full SHA for c13d2f2
1 file changed
.github/workflows/pullrequest.yml
@@ -0,0 +1,25 @@
1
+name: Build Eleventy for Pull Request
2
+
3
+on: pull_request
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-20.04
8
9
+ strategy:
10
+ matrix:
11
+ node-version: [14.x]
12
13
+ steps:
14
+ - uses: actions/checkout@v2
15
16
+ - name: Use Node.js ${{ matrix.node-version }}
17
+ uses: actions/setup-node@v2
18
+ with:
19
+ node-version: ${{ matrix.node-version }}
20
21
+ - name: Install dependencies & build
22
+ run: |
23
+ npm ci
24
+ npm run sass:process
25
+ env NODE_ENV=production npx @11ty/eleventy
0 commit comments