aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Bennett <hello@vantezzen.io>2019-12-11 11:52:10 +0100
committerLibravatar GitHub <noreply@github.com>2019-12-11 11:52:10 +0100
commit4101095a95ebd71baba8cdca43d3c2829e56adb2 (patch)
tree06bef1629e64e73eba139db0c54dcacceead7dab /.github
parentUpdate packages (diff)
downloadferdium-recipes-4101095a95ebd71baba8cdca43d3c2829e56adb2.tar.gz
ferdium-recipes-4101095a95ebd71baba8cdca43d3c2829e56adb2.tar.zst
ferdium-recipes-4101095a95ebd71baba8cdca43d3c2829e56adb2.zip
Add automatic updating
Diffstat (limited to '.github')
-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