From 15ee065994a11b470362eb087390514e6f3442a8 Mon Sep 17 00:00:00 2001 From: tree Date: Sat, 28 Jan 2023 20:09:31 +0100 Subject: [PATCH] Branch test workflow --- .github/workflows/test.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..02c11eeb --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,29 @@ +name: Test build + +on: + pull_request: + +jobs: + deploy: + runs-on: ubuntu-22.04 + permissions: + contents: write + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + steps: + - uses: actions/checkout@v3 + with: + submodules: true # Fetch Hugo themes (true OR recursive) + fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod + + - uses: actions/setup-node@v3 + with: + node-version: 18 + + - name: Install dependencies + run: npm ci + + - run: rm src/lib/data.json && wget -O src/lib/data.json https://data.prgblockweek.com/23/index.json + + - name: Build + run: npm run build \ No newline at end of file