fix(ui-library): component toggle-switch fixes #1078
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: Lit-Analyze | |
on: [pull_request] | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- name: Get node version | |
id: node | |
run: | | |
echo "::set-output name=version::$(node -v)" | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Install modules | |
run: yarn | |
- name: Generate tokens | |
run: yarn tokens:generate | |
- name: Run analyze | |
run: yarn analyze |