From 3cc2d43c65d47988047c765e510b7141fd50f279 Mon Sep 17 00:00:00 2001 From: Christopher Renaud Oelerich Date: Sun, 21 Apr 2024 12:27:14 -0500 Subject: [PATCH] ci --- .github/workflows/main.yml | 2 +- .github/workflows/pull_request.yml | 8 ++------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4631112..d89a7af 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,7 +29,7 @@ jobs: - name: Downloading Dependencies - run: npm install --omit=dev + run: npm ci --omit=dev - name: Build run: npm run build diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index b3d4f69..286c870 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -13,12 +13,8 @@ jobs: contents: write steps: - - uses: actions/checkout@v4 - - - name: Use Node.js - uses: actions/setup-node@v4 - with: - node-version: '14' + - name: Checkout Repository + uses: actions/checkout@v4 - name: Install dependencies run: npm ci