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

github.com/nextcloud/twofactor_totp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-09-22 11:19:22 +0300
committerJoas Schilling <coding@schilljs.com>2022-09-22 11:19:22 +0300
commit584dc389e56e3239a17abe3722fc4be9f3dccc56 (patch)
tree18b630d6a2e10a57d5c25855cd117d48e923d08d
parent1b878e76416d68f961641adb8ced55c9a5912c71 (diff)
Remove conflict file
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--.github/workflows/node-test.yml.orig48
1 files changed, 0 insertions, 48 deletions
diff --git a/.github/workflows/node-test.yml.orig b/.github/workflows/node-test.yml.orig
deleted file mode 100644
index ae5874b..0000000
--- a/.github/workflows/node-test.yml.orig
+++ /dev/null
@@ -1,48 +0,0 @@
-# This workflow is provided via the organization template repository
-#
-# https://github.com/nextcloud/.github
-# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
-
-name: Node
-
-on:
- pull_request:
- push:
- branches:
- - main
- - master
- - stable*
-
-jobs:
- test:
- runs-on: ubuntu-latest
-
- name: test
- steps:
- - name: Checkout
- uses: actions/checkout@v3
-
- - name: Read package.json node and npm engines version
- uses: skjnldsv/read-package-engines-version-actions@v1.2
- id: versions
- with:
- fallbackNode: '^12'
- fallbackNpm: '^6'
-
- - name: Set up node ${{ steps.versions.outputs.nodeVersion }}
- uses: actions/setup-node@v3
- with:
- node-version: ${{ steps.versions.outputs.nodeVersion }}
-
- - name: Set up npm ${{ steps.versions.outputs.npmVersion }}
- run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"
-
- - name: Install dependencies
- run: npm ci
-
- - name: Test
-<<<<<<< HEAD
- run: npm run test
-=======
- run: npm run Test
->>>>>>> 571939f (Update workflows)