0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-06 22:40:26 -05:00
verdaccio/.github/workflows/ci-website.yml

38 lines
818 B
YAML
Raw Normal View History

name: CI Website
on:
push:
branches:
- master
pull_request:
paths:
- .github/workflows/ci-website.yml
2020-09-01 14:22:36 -05:00
- 'website/**'
jobs:
ci:
strategy:
fail-fast: false
matrix:
2020-08-31 15:21:38 -05:00
os: [ubuntu-latest, windows-latest]
node_version: [14]
2020-09-01 14:22:36 -05:00
name: ${{ matrix.os }} / Node ${{ matrix.node_version }}
2020-08-31 15:21:38 -05:00
runs-on: ${{ matrix.os }}
steps:
2020-08-27 14:23:56 -05:00
- uses: actions/checkout@v1
- name: Use Node ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
node_version: ${{ matrix.node_version }}
- name: Install pnpm
run: npm i -g pnpm
- name: Install
run: pnpm recursive install
- name: Lint website
run: pnpm lint
- name: Build website
run: |
cd website
pnpm build