v0.57.10 #23
This file contains hidden or 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: Testing | |
| on: [push] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: '23.x' | |
| - run: npm install -g yarn@2 | |
| - run: yarn install | |
| - name: Build packages | |
| run: | | |
| yarn workspace @courselit/icons build | |
| yarn workspace @courselit/common-models build | |
| yarn workspace @courselit/utils build | |
| yarn workspace @courselit/text-editor build | |
| yarn workspace @courselit/state-management build | |
| yarn workspace @courselit/components-library build | |
| yarn workspace @courselit/common-widgets build | |
| - name: Running tests | |
| run: | | |
| yarn test | |
| working-directory: ./ |