This repository has been archived by the owner on Jul 25, 2024. It is now read-only.
Merge branch 'main' into feat/state-support #13
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 | |
on: | |
push: | |
branches-ignore: | |
- main | |
- release-please* | |
jobs: | |
build-test: | |
name: "Build & test" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# these if statements ensure that a publication only occurs when | |
# a new release is created: | |
- run: yarn install --immutable --immutable-cache | |
# for security reasons, use --check-cache if accepting PRs from third-parties. | |
- run: yarn nx run-many -t prepublish |