1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
name: Build Website runs: using: "composite" steps: - name: Enable Corepack shell: bash run: corepack enable - name: Set Node.js uses: actions/setup-node@v4 with: node-version: 20.x cache: 'yarn' - name: Install dependencies shell: bash run: yarn install --immutable - name: Run build shell: bash run: yarn build
[PATCH repo_name]