aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Bennett <hello@vantezzen.io>2019-12-11 12:00:35 +0100
committerLibravatar Bennett <hello@vantezzen.io>2019-12-11 12:00:35 +0100
commit1e182de9c07d0b21e5adcaa689ba8cb007d6a45b (patch)
treef78df58b60c4ba64e1df297283c5944b915c125a
parentUpdate ProtonMail recipe (diff)
parentAdd automatic updating (diff)
downloadferdium-recipes-1e182de9c07d0b21e5adcaa689ba8cb007d6a45b.tar.gz
ferdium-recipes-1e182de9c07d0b21e5adcaa689ba8cb007d6a45b.tar.zst
ferdium-recipes-1e182de9c07d0b21e5adcaa689ba8cb007d6a45b.zip
Merge branch 'master' of https://github.com/getferdi/recipes
-rw-r--r--.github/workflows/nodejs.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml
new file mode 100644
index 0000000..9b6076c
--- /dev/null
+++ b/.github/workflows/nodejs.yml
@@ -0,0 +1,28 @@
1name: Node CI
2
3on:
4 schedule:
5 - cron: 0 0 * * 0
6
7jobs:
8 build:
9
10 runs-on: ubuntu-latest
11
12 strategy:
13 matrix:
14 node-version: [8.x, 10.x, 12.x]
15
16 steps:
17 - uses: actions/checkout@v1
18 - name: Use Node.js ${{ matrix.node-version }}
19 uses: actions/setup-node@v1
20 with:
21 node-version: ${{ matrix.node-version }}
22 - name: npm install, and update
23 run: |
24 cd scripts
25 npm install
26 npm run update
27 env:
28 CI: true