From 0ad125650e366a87c70964db4cbf2cad1ed2d235 Mon Sep 17 00:00:00 2001 From: Conor Heffron Date: Tue, 17 Dec 2024 21:02:21 +0000 Subject: [PATCH 1/2] #185 Create node.js.yml --- .github/workflows/node.js.yml | 37 +++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/node.js.yml diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml new file mode 100644 index 0000000..b848076 --- /dev/null +++ b/.github/workflows/node.js.yml @@ -0,0 +1,37 @@ +# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs + +name: Node.js CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [20.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v4 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + cache: 'npm' + cache-dependency-path: './frontend/package-lock.json' + - run: npm ci + working-directory: './frontend' + - run: npm run build --if-present + working-directory: './frontend' + - run: npm test + working-directory: './frontend' + - run: npm install + working-directory: './frontend' From c58e398e426a1e8f75045638f5d3e89c7373dcc6 Mon Sep 17 00:00:00 2001 From: Conor Heffron Date: Tue, 17 Dec 2024 21:04:05 +0000 Subject: [PATCH 2/2] #185 Update node.js.yml --- .github/workflows/node.js.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index b848076..c2aeced 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -26,9 +26,9 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: 'npm' - cache-dependency-path: './frontend/package-lock.json' - - run: npm ci - working-directory: './frontend' + # cache-dependency-path: './frontend/package-lock.json' + # - run: npm ci + # working-directory: './frontend' - run: npm run build --if-present working-directory: './frontend' - run: npm test