mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
45 lines
983 B
YAML
45 lines
983 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- 'changeset-release/master'
|
|
pull_request:
|
|
paths:
|
|
- .changeset/**
|
|
- .github/workflows/ci.yml
|
|
- 'packages/**'
|
|
- 'jest/**'
|
|
- 'package.json'
|
|
- 'pnpm-workspace.yaml'
|
|
jobs:
|
|
ci:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest]
|
|
node_version: [12, 14]
|
|
|
|
name: ${{ matrix.os }} / Node ${{ matrix.node_version }}
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2.3.1
|
|
- name: Use Node ${{ matrix.node_version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node_version }}
|
|
- name: Install pnpm
|
|
run: npm i pnpm@latest -g
|
|
- name: Install
|
|
run: pnpm recursive install
|
|
- name: Lint
|
|
run: pnpm lint
|
|
- name: Clean
|
|
run: pnpm clean
|
|
- name: Build
|
|
run: pnpm build
|
|
- name: Test
|
|
run: pnpm test
|