From d14c6596317c416e802b5ef706e9134791515c11 Mon Sep 17 00:00:00 2001 From: Henk Verlinde Date: Fri, 26 May 2023 18:58:21 +0200 Subject: [PATCH] meta: remove node.js-ci.yml workflow --- .github/workflows/node.js-ci.yml | 37 -------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/node.js-ci.yml diff --git a/.github/workflows/node.js-ci.yml b/.github/workflows/node.js-ci.yml deleted file mode 100644 index bcebf2a..0000000 --- a/.github/workflows/node.js-ci.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Continuous Integration - Action - -on: - push: - branches: master - pull_request: - branches: master - -jobs: - build: - runs-on: ${{ matrix.os }} - - strategy: - matrix: - os: [ubuntu-latest] - node-version: [18.x, 20.x] - - steps: - - uses: actions/checkout@v3 - - uses: pnpm/action-setup@v2 - with: - version: 7 - - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - cache: 'pnpm' - - - name: Install dependencies - run: pnpm install - - - name: Run test script - run: pnpm test - - - name: Build production website - run: pnpm build \ No newline at end of file