Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2021-06-27 21:00:39 +0300
committerGitHub <noreply@github.com>2021-06-27 21:00:39 +0300
commit51b1dd0491347e10c0ce1b1491fd328d774a6946 (patch)
treefb8830d95d3e54d8a637a2c657f5c5008aece771 /.github
parentbe257ee5e8b6a0e43481d51e63c0e887c8f6a2ee (diff)
Delete nodejs.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/nodejs.yml33
1 files changed, 0 insertions, 33 deletions
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml
deleted file mode 100644
index dd259ace2..000000000
--- a/.github/workflows/nodejs.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-name: Node CI
-
-on: [push]
-
-jobs:
- build:
-
- runs-on: ubuntu-latest
-
- strategy:
- matrix:
- node-version: [14.x]
-
- steps:
- - uses: actions/checkout@v1
- - name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v1
- with:
- node-version: ${{ matrix.node-version }}
- - name: Set up npm7
- run: npm i -g npm@7
- - name: npm install, build
- run: |
- npm ci
- npm run build --if-present
- - name: npm test
- run: |
- npm test
- - name: check webpack build
- run: |
- bash -c "[[ ! \"`git status --porcelain `\" ]] || ( echo 'Uncommited changes in webpack build' && git status && exit 1 )"
- env:
- CI: true