diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml deleted file mode 100644 index 785913e..0000000 --- a/.github/workflows/build-and-test.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Build Windows - -on: - push: - branches: - - master - pull_request: - branches: - - master - -jobs: - build: - runs-on: windows-latest - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: 18 - - name: Install pnpm - run: npm i -g pnpm - - name: Install dependencies - run: pnpm i - - name: Build project - run: pnpm build - - name: Output `second.astro` - run: type .vercel\output\static\second\index.html - - name: Output `third.astro` - run: type .vercel\output\static\third\index.html