BREAKING CHANGE: Migrate to Jest and Webpack to be more compatible with Lit 3 #51
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: CI | |
on: pull_request | |
jobs: | |
test: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: Brightspace/third-party-actions@actions/checkout | |
- name: Setup Node | |
uses: Brightspace/third-party-actions@actions/setup-node | |
with: | |
node-version-file: .nvmrc | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint and Test | |
run: npm run test | |
- name: Build Sample | |
run: npm run build-sample | |