Skip to content

Reading List Blog Entry #52

Reading List Blog Entry

Reading List Blog Entry #52

Workflow file for this run

name: Test deployment
on:
pull_request:
branches: [main]
jobs:
test-deploy:
name: Test deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: 20.x
cache: yarn
- name: yarn install
run: yarn install --frozen-lockfile
- name: download remote files
run: yarn run remote-download
- name: yarn build
run: yarn build