Skip to content

Transition to Yarn Workspaces #3

Transition to Yarn Workspaces

Transition to Yarn Workspaces #3

Workflow file for this run

name: new-workflow
permissions:
contents: read
on:
pull_request:
branches:
- master
jobs:
load-packages:
name: Determine the packages present in the repo for the given type
runs-on: ubuntu-latest
strategy:
matrix:
type: ['lib', 'bundles', 'tabs']
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Use Node.js 💻
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: yarn
- name: Find Packages
id: find
uses: ./.github/actions/info
with:
type: ${{ matrix.type }}
- name: Print
run: echo ${{ steps.find.outputs }}