Skip to content

Modernize project, upgrade to Lit3, add tests, and expand README #107

Modernize project, upgrade to Lit3, add tests, and expand README

Modernize project, upgrade to Lit3, add tests, and expand README #107

Workflow file for this run

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