changing worflow for testing #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |