Skip to content

Delete configs/piracy-list/34306.github.io #99

Delete configs/piracy-list/34306.github.io

Delete configs/piracy-list/34306.github.io #99

Workflow file for this run

name: 'Test Changes'
on:
pull_request:
jobs:
build:
name: Build Manifests
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/Iron'
- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- name: Yank PNPM Store Directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Setup Cache
uses: actions/cache@v3
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Generate Manifests
run: cd ci && pnpm install --frozen-lockfile && pnpm run build && cd -