feat: add oss eu news and collection tag on report page #570
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 and Unit Tests | |
on: | |
push: | |
branches: | |
- 'release' | |
- 'main' | |
paths-ignore: | |
- README.md | |
- docs/** | |
pull_request: | |
branches: | |
- 'release' | |
- 'main' | |
paths-ignore: | |
- README.md | |
- docs/** | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
cache: 'yarn' | |
registry-url: https://registry.npmjs.org/ | |
- run: yarn install | |
- run: yarn test:ci | |
- run: yarn build |