GEP-156 GEP-157 GEP-128 GEP-14 Update dep versions, simplify the use of yalc, and update layout-manager-playground to vite #1361
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: Geppetto.js Workflow | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
defaults: | |
run: | |
working-directory: geppetto.js | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x, 21.x, 22.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: | | |
(cd geppetto-core && yarn && yarn test) | |
(cd geppetto-ui && yarn && yarn test) | |
(cd geppetto-client && yarn && yarn test) |