Skip to content

Add tailwind light & dark themes #11

Add tailwind light & dark themes

Add tailwind light & dark themes #11

Workflow file for this run

name: run-tests
on:
push:
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: cache pnpm modules
uses: actions/cache@v2
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- name: pnpm setup
uses: pnpm/action-setup@v2.1.0
with:
version: 6.31.0
run_install: true
- run: pnpm run build
- run: pnpm run update
- run: pnpm run gen
working-directory: ./packages/site
- run: pnpm run test
env:
CI: true