From 7d8f566b963bc80df7f68aec0ed0f9e434518a88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=80=97=E5=AD=90?= Date: Mon, 25 Mar 2024 02:08:57 +0800 Subject: [PATCH] workflow: fix --- .github/workflows/ci.yml | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 93675c9..10ffb9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: CI on: [push] jobs: - prepare: + build: runs-on: ubuntu-latest container: image: node:10.24.1 @@ -14,20 +14,6 @@ jobs: - name: Install dependencies run: npm install - - uses: actions/cache@v2 - with: - path: node_modules - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - - build: - needs: prepare - runs-on: ubuntu-latest - container: - image: node:10.24.1 - - steps: - - uses: actions/checkout@v2 - - name: Build run: npm run build