aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2020-02-21 12:52:54 +0100
committerLibravatar vantezzen <hello@vantezzen.io>2020-02-21 12:52:54 +0100
commit9b8accefa82ade6edd24b4ee9f073f728c9a387d (patch)
tree07193948e22a895021405ce5ba8bda58d5bd128a /.github
parent#42 Fix invalid package configuration key "customURL" (diff)
downloadferdium-recipes-9b8accefa82ade6edd24b4ee9f073f728c9a387d.tar.gz
ferdium-recipes-9b8accefa82ade6edd24b4ee9f073f728c9a387d.tar.zst
ferdium-recipes-9b8accefa82ade6edd24b4ee9f073f728c9a387d.zip
Remove unneeded workflows
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/nodejs.yml28
1 files changed, 0 insertions, 28 deletions
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml
deleted file mode 100644
index 9b6076c..0000000
--- a/.github/workflows/nodejs.yml
+++ /dev/null
@@ -1,28 +0,0 @@
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