feat(widget-element)!: parse attributes to element fields #21
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: Test | |
on: | |
push: | |
branches: | |
- master | |
tags-ignore: | |
- v* | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
node-version: '18.x' | |
- run: yarn | |
- run: yarn test | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
node-version: '18.x' | |
- run: yarn | |
- run: yarn lint | |
- run: yarn typecheck | |
size: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
node-version: '18.x' | |
- run: yarn | |
- run: yarn sizecheck | |
# licenselint: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Use Node.js | |
# uses: actions/setup-node@v3 | |
# with: | |
# cache: yarn | |
# node-version: '18.x' | |
# - run: yarn | |
# - run: yarn licenselint | |
commitlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
node-version: '18.x' | |
- run: yarn | |
- uses: wagoid/commitlint-github-action@v3 | |
env: | |
NODE_PATH: ${{ github.workspace }}/node_modules |