feat: #9761 adds additional elements components for v4 #4186
Workflow file for this run
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 PR | |
on: | |
pull_request: | |
types: ['opened', 'synchronize'] | |
env: | |
NPM_TOKEN: ${{secrets.NPM_TOKEN}} | |
AWS_ACCESS_KEY_ID: ${{secrets.AWS_ACCESS_KEY_ID}} | |
AWS_SECRET_ACCESS_KEY: ${{secrets.AWS_SECRET_ACCESS_KEY}} | |
AWS_REGION: ${{secrets.AWS_REGION}} | |
CI: true | |
jobs: | |
build-pr: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '18.x' | |
- name: Install | |
run: yarn | |
- name: Fetch config | |
run: | | |
yarn changed foreach --parallel --verbose --git-range origin/master run conf --name development | |
- name: Build | |
run: | | |
yarn changed foreach --parallel --verbose --git-range origin/master run build |