Skip to content

Test deployment with GH Actions #3

Test deployment with GH Actions

Test deployment with GH Actions #3

Workflow file for this run

name: test-deployment
run-name: Test deployment with GH Actions
on:
push:
branchs:
- test-deploy
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.11'
- name: Enable and set up Yarn
run: |
corepack enable
yarn set version stable
- name: Install packages and build
run: |
yarn install
yarn run build-main