Modernize project, upgrade to Lit3, add tests, and expand README #107
This file contains hidden or 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' | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| name: Test build | |
| runs-on: ubuntu-latest | |
| env: | |
| COREPACK_ENABLE_DOWNLOAD_PROMPT: 0 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| - name: Install dependencies | |
| run: | | |
| corepack enable | |
| corepack prepare yarn@4.12.0 --activate | |
| yarn install --immutable | |
| - name: Build | |
| run: yarn build |