submodules: bump external/oasis-core from cbd96df to b9cfa6a
#3577
Workflow file for this run
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: ci-test | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| ci-test: | |
| name: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| submodules: true | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| cache: yarn | |
| - name: Build | |
| run: | | |
| yarn install --frozen-lockfile | |
| yarn build | |
| - name: Test | |
| run: | | |
| yarn test |