vitesse/.github/workflows/test.yml

63 lines
1.2 KiB
YAML
Raw Normal View History

2021-11-02 09:45:48 +08:00
name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [14.x, 16.x]
2021-11-06 09:34:30 +08:00
os: [ubuntu-latest]
2021-11-02 09:45:48 +08:00
fail-fast: false
steps:
- uses: actions/checkout@v2
2021-11-03 11:33:02 +08:00
- uses: actions/cache@v2
with:
path: |
2021-11-06 09:34:30 +08:00
~/.cache
2021-11-03 11:33:02 +08:00
key: cypress-cache-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}
2021-11-02 09:45:48 +08:00
- 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
2021-12-26 13:16:12 +08:00
- name: Unit Test
run: pnpm run test:unit
2021-11-02 09:45:48 +08:00
- 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
2021-11-02 09:55:46 +08:00
start: npx vite --port 3333