Add dimensionsCssVarsPostfix to support bughouse separate board zoom #135
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: Continuous Integration | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
cache: yarn | |
- uses: github/codeql-action/init@v2 | |
with: | |
languages: javascript | |
- uses: github/codeql-action/analyze@v2 | |
- run: yarn install | |
- run: yarn run lint | |
- run: yarn run dist |