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
753 B
YAML
Raw Normal View History

name: CI Website
on:
push:
branches:
- master
pull_request:
paths:
- .github/workflows/ci-website.yml
2020-08-27 14:23:56 -05:00
- "website/**"
jobs:
ci:
name: Node ${{ matrix.node_version }}
strategy:
fail-fast: false
matrix:
node_version: [14]
runs-on: ubuntu-latest
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