Skip to content

feat: remove content property & add shadow mode detection to render property #262

feat: remove content property & add shadow mode detection to render property

feat: remove content property & add shadow mode detection to render property #262

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: "npm"
- uses: browser-actions/setup-chrome@latest
- name: Install dependencies
run: |
npm install
npm run test:setup
- name: Run tests
run: |
npm run test
npm run test:coverage || true
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: "./coverage/lcov/lcov.info"