Skip to content

chore: 不缓存

chore: 不缓存 #6

Workflow file for this run

name: Node CI
on:
push:
branches:
- next
- feat/**
pull_request:
branches:
- next
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [16.x]
steps:
- name: Checkout
uses: actions/checkout@v3
with :
ref : ${{ github.ref || github.head_ref || github.ref_name }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
uses: pnpm/action-setup@v2.2.4
with:
version: 8
run_install: |
- recursive: true
- name: build
run: pnpm build