vitesse/.github/workflows/ci.yml

97 lines
2.0 KiB
YAML
Raw Normal View History

2022-04-07 10:21:09 +08:00
name: CI
2021-11-02 09:45:48 +08:00
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
2022-04-07 10:21:09 +08:00
lint:
runs-on: ubuntu-latest
steps:
2022-05-01 11:51:35 +08:00
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
2022-04-07 10:21:09 +08:00
with:
node-version: 16.x
cache: pnpm
- name: Install
run: pnpm install
2022-04-07 10:46:59 +08:00
- name: Lint
2022-04-07 10:21:09 +08:00
run: pnpm run lint
typecheck:
runs-on: ubuntu-latest
steps:
2022-05-01 11:51:35 +08:00
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
2022-04-07 10:21:09 +08:00
with:
node-version: 16.x
cache: pnpm
- name: Install
run: pnpm install
- name: Typecheck
run: pnpm run typecheck
test:
2021-11-02 09:45:48 +08:00
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:
2022-05-01 11:51:35 +08:00
- uses: actions/checkout@v3
2022-05-01 11:55:16 +08:00
- uses: pnpm/action-setup@v2
2022-04-07 10:21:09 +08:00
- name: Use Node.js ${{ matrix.node-version }}
2022-05-01 11:51:35 +08:00
uses: actions/setup-node@v3
2022-04-07 10:21:09 +08:00
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
cache: pnpm
- run: pnpm install
2022-05-01 11:51:35 +08:00
- run: pnpm run test:unit
2022-04-07 10:21:09 +08:00
test-e2e:
runs-on: ubuntu-latest
steps:
2022-05-01 11:51:35 +08:00
- uses: actions/checkout@v3
- uses: actions/cache@v3
2021-11-03 11:33:02 +08:00
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') }}
2022-03-10 20:30:50 +08:00
2022-05-01 11:51:35 +08:00
- uses: pnpm/action-setup@v2
2021-11-02 09:45:48 +08:00
- name: Use Node.js ${{ matrix.node-version }}
2022-05-01 11:51:35 +08:00
uses: actions/setup-node@v3
2021-11-02 09:45:48 +08:00
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
2022-03-10 20:30:50 +08:00
cache: pnpm
2021-11-02 09:45:48 +08:00
- run: pnpm install
- 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