Skip to content

changing worflow for testing #11

changing worflow for testing

changing worflow for testing #11

Workflow file for this run

name: Build Yarn Package
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
# Check out the repository
- name: Checkout repository
uses: actions/checkout@v4
# Set up Node.js with Yarn, caching Yarn dependencies.
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '23.x'
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
working-directory: ./prompt-shared-state
run: yarn --frozen-lockfile
- name: Build package
working-directory: ./prompt-shared-state
run: yarn build