bug/issue 1226 nested SSR pages release branch rebase and refactor (#… #217
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: Release Branch Integration | |
on: | |
push: | |
branches: | |
- release/** | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
node-version: [18] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install Chromium Library Dependencies | |
run: | | |
sh ./.github/workflows/chromium-lib-install.sh | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Installing project dependencies | |
run: | | |
yarn install --frozen-lockfile && yarn lerna bootstrap | |
- name: Lint | |
run: | | |
yarn lint | |
- name: Test | |
run: | | |
yarn test | |
- name: Build | |
run: | | |
yarn clean && yarn build |