diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 0e9d558..00672d3 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -23,7 +23,7 @@ jobs: node-version: 20 - name: Install dependencies - run: npm ci + run: npm install - name: Run linter run: npm run lint @@ -39,11 +39,10 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v3 with: - node-version: 18 - cache: 'npm' + node-version: 20 - name: Install dependencies - run: npm ci + run: npm install - name: Run build run: npm run build @@ -66,11 +65,10 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v3 with: - node-version: 18 - cache: 'npm' + node-version: 20 - name: Install dependencies - run: npm ci + run: npm install - name: Build the project run: npm run build