Skip to content

Merge branch 'upgrade-vite' of github.com:ituob/itu-ob-editor into up… #148

Merge branch 'upgrade-vite' of github.com:ituob/itu-ob-editor into up…

Merge branch 'upgrade-vite' of github.com:ituob/itu-ob-editor into up… #148

Workflow file for this run

name: Test
on:
pull_request:
push:
ignore-tags:
- v*
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
# , ubuntu-latest
os: [macos-latest, windows-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn
- name: Run tests
run: yarn compile
# yarn test
# In package.json:
# "test": "run-s test:*",
# "test:jest": "jest",
# "test:types": "tsc --noEmit && tsc --project ./website --noEmit",