aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/nodejs.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/nodejs.yml')
-rw-r--r--.github/workflows/nodejs.yml42
1 files changed, 0 insertions, 42 deletions
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml
deleted file mode 100644
index c1bb8983..00000000
--- a/.github/workflows/nodejs.yml
+++ /dev/null
@@ -1,42 +0,0 @@
-name: Node.js build and test
-
-on:
- push:
- branches: [ master ]
- pull_request:
- branches: [ master ]
- workflow_dispatch:
-
-concurrency:
- group: nodejs-${{ github.ref }}
- cancel-in-progress: true
-
-defaults:
- run:
- working-directory: webui
-
-jobs:
- build:
- runs-on: ubuntu-latest
-
- strategy:
- matrix:
- node-version: [12.x, 14.x, 16.x]
-
- steps:
- - name: Setup Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v4
- with:
- node-version: ${{ matrix.node-version }}
-
- - name: Check out code
- uses: actions/checkout@v4
-
- - name: Install
- run: make install
-
- - name: Build
- run: make build
-
- - name: Test
- run: make test