62 lines
1.3 KiB
YAML
62 lines
1.3 KiB
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [14.x, 16.x]
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
fail-fast: false
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: |
|
|
~/.cache/Cypress
|
|
/Users/runner/Library/Caches/Cypress
|
|
C:\\Users\\runneradmin\\.cache\\Cypress
|
|
key: cypress-cache-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}
|
|
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v2.0.1
|
|
with:
|
|
version: 6.15.1
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
registry-url: https://registry.npmjs.org/
|
|
cache: "pnpm"
|
|
|
|
- run: pnpm install
|
|
|
|
- name: Lint
|
|
run: pnpm run lint
|
|
|
|
- name: Type Check
|
|
run: pnpm run typecheck
|
|
|
|
- name: Cypress PNPM Patch
|
|
run: cp pnpm-lock.yaml package-lock.json
|
|
|
|
- name: Cypress
|
|
uses: cypress-io/github-action@v2
|
|
with:
|
|
install-command: echo
|
|
build: pnpm run build
|
|
start: npx vite --port 3333
|