Add support for rendering a custom wrapper around Element #63
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: Main | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
# Global | |
# ================================================ | |
eslint-16: | |
name: 'ESLint Node 16' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- run: yarn install | |
- run: yarn lint | |
# Node 16 | |
# ================================================ | |
build-16: | |
name: 'Build Node 16' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- run: yarn install | |
- run: yarn build | |
tests-16: | |
name: 'Tests Node 16' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- run: yarn install | |
- uses: nick-invision/retry@v2 | |
with: | |
max_attempts: 5 | |
timeout_minutes: 5 | |
command: yarn test | |
# Node 14 | |
# ================================================ | |
build-14: | |
name: 'Build Node 14' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- run: yarn install | |
- run: yarn build | |
tests-14: | |
name: 'Tests Node 14' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- run: yarn install | |
- uses: nick-invision/retry@v2 | |
with: | |
max_attempts: 5 | |
timeout_minutes: 5 | |
command: yarn test |