2019-10-01 15:08:40 -05:00
|
|
|
|
name: CI
|
|
|
|
|
|
2020-06-30 14:55:14 -05:00
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches:
|
2021-04-10 04:55:38 -05:00
|
|
|
|
- master
|
|
|
|
|
- 'changeset-release/master'
|
2020-06-30 14:55:14 -05:00
|
|
|
|
pull_request:
|
|
|
|
|
paths:
|
2020-09-07 00:36:08 -05:00
|
|
|
|
- .changeset/**
|
2020-06-30 14:55:14 -05:00
|
|
|
|
- .github/workflows/ci.yml
|
2020-09-01 14:22:36 -05:00
|
|
|
|
- 'packages/**'
|
2021-12-29 13:23:20 -05:00
|
|
|
|
- 'docker-examples/**'
|
2020-09-01 14:22:36 -05:00
|
|
|
|
- 'jest/**'
|
|
|
|
|
- 'package.json'
|
|
|
|
|
- 'pnpm-workspace.yaml'
|
2022-04-28 11:06:00 -05:00
|
|
|
|
permissions:
|
|
|
|
|
contents: read
|
|
|
|
|
|
2019-10-01 15:08:40 -05:00
|
|
|
|
jobs:
|
2021-04-24 16:28:52 -05:00
|
|
|
|
prepare:
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
name: setup verdaccio
|
|
|
|
|
services:
|
|
|
|
|
verdaccio:
|
2021-11-20 01:46:35 -05:00
|
|
|
|
image: verdaccio/verdaccio:nightly-master
|
2021-04-24 16:28:52 -05:00
|
|
|
|
ports:
|
|
|
|
|
- 4873:4873
|
|
|
|
|
steps:
|
2022-03-07 14:44:27 -05:00
|
|
|
|
- uses: actions/checkout@v3
|
2021-12-31 12:32:20 -05:00
|
|
|
|
- name: Use Node 16
|
2022-03-02 16:41:55 -05:00
|
|
|
|
uses: actions/setup-node@v3
|
2021-04-24 16:28:52 -05:00
|
|
|
|
with:
|
2021-12-31 12:32:20 -05:00
|
|
|
|
node-version: 16
|
2021-04-24 16:28:52 -05:00
|
|
|
|
- name: Install pnpm
|
2022-03-27 14:42:52 -05:00
|
|
|
|
run: npm i pnpm@6.32.3 -g
|
2021-04-24 16:28:52 -05:00
|
|
|
|
- name: set store
|
2021-12-29 13:23:20 -05:00
|
|
|
|
run: |
|
2021-04-24 16:28:52 -05:00
|
|
|
|
mkdir ~/.pnpm-store
|
|
|
|
|
pnpm config set store-dir ~/.pnpm-store
|
|
|
|
|
- name: Install
|
|
|
|
|
run: pnpm recursive install --frozen-lockfile --registry http://localhost:4873
|
|
|
|
|
- name: Cache .pnpm-store
|
2022-03-21 17:12:39 -05:00
|
|
|
|
uses: actions/cache@v3
|
2021-04-24 16:28:52 -05:00
|
|
|
|
with:
|
|
|
|
|
path: ~/.pnpm-store
|
|
|
|
|
key: pnpm-${{ hashFiles('pnpm-lock.yaml') }}
|
|
|
|
|
restore-keys: |
|
|
|
|
|
pnpm-
|
|
|
|
|
lint:
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
name: Lint
|
|
|
|
|
needs: prepare
|
|
|
|
|
steps:
|
2022-03-07 14:44:27 -05:00
|
|
|
|
- uses: actions/checkout@v3
|
2021-04-24 16:28:52 -05:00
|
|
|
|
- name: Use Node 16
|
2022-03-02 16:41:55 -05:00
|
|
|
|
uses: actions/setup-node@v3
|
2021-04-24 16:28:52 -05:00
|
|
|
|
with:
|
|
|
|
|
node-version: 16
|
|
|
|
|
- name: Install pnpm
|
2022-03-27 14:42:52 -05:00
|
|
|
|
run: npm i pnpm@6.32.3 -g
|
2022-03-21 17:12:39 -05:00
|
|
|
|
- uses: actions/cache@v3
|
2021-04-24 16:28:52 -05:00
|
|
|
|
with:
|
|
|
|
|
path: ~/.pnpm-store
|
2021-12-29 13:23:20 -05:00
|
|
|
|
key: pnpm-${{ hashFiles('pnpm-lock.yaml') }}
|
2021-04-24 16:28:52 -05:00
|
|
|
|
- name: Install
|
|
|
|
|
run: pnpm recursive install --frozen-lockfile --ignore-scripts
|
|
|
|
|
- name: Lint
|
|
|
|
|
run: pnpm lint
|
|
|
|
|
format:
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
name: Format
|
|
|
|
|
needs: prepare
|
|
|
|
|
steps:
|
2022-03-07 14:44:27 -05:00
|
|
|
|
- uses: actions/checkout@v3
|
2021-04-24 16:28:52 -05:00
|
|
|
|
- name: Use Node 16
|
2022-03-02 16:41:55 -05:00
|
|
|
|
uses: actions/setup-node@v3
|
2021-04-24 16:28:52 -05:00
|
|
|
|
with:
|
|
|
|
|
node-version: 16
|
|
|
|
|
- name: Install pnpm
|
2022-03-27 14:42:52 -05:00
|
|
|
|
run: npm i pnpm@6.32.3 -g
|
2022-03-21 17:12:39 -05:00
|
|
|
|
- uses: actions/cache@v3
|
2021-04-24 16:28:52 -05:00
|
|
|
|
with:
|
|
|
|
|
path: ~/.pnpm-store
|
2021-12-29 13:23:20 -05:00
|
|
|
|
key: pnpm-${{ hashFiles('pnpm-lock.yaml') }}
|
2021-04-24 16:28:52 -05:00
|
|
|
|
- name: Install
|
|
|
|
|
run: pnpm recursive install --frozen-lockfile --ignore-scripts
|
|
|
|
|
- name: Lint
|
|
|
|
|
run: pnpm format:check
|
2021-12-29 13:23:20 -05:00
|
|
|
|
build:
|
|
|
|
|
needs: [format, lint]
|
2019-10-01 15:08:40 -05:00
|
|
|
|
strategy:
|
2021-04-24 16:28:52 -05:00
|
|
|
|
fail-fast: true
|
2019-10-01 15:08:40 -05:00
|
|
|
|
matrix:
|
2021-12-29 13:23:20 -05:00
|
|
|
|
os: [ubuntu-latest, windows-latest]
|
2021-09-12 09:21:19 -05:00
|
|
|
|
## Node 16 breaks UI test, jest issue
|
2021-12-31 12:32:20 -05:00
|
|
|
|
node_version: [16, 17]
|
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 }}
|
2019-10-01 15:08:40 -05:00
|
|
|
|
steps:
|
2022-03-07 14:44:27 -05:00
|
|
|
|
- uses: actions/checkout@v3
|
2020-08-27 14:23:56 -05:00
|
|
|
|
- name: Use Node ${{ matrix.node_version }}
|
2022-03-02 16:41:55 -05:00
|
|
|
|
uses: actions/setup-node@v3
|
2020-08-27 14:23:56 -05:00
|
|
|
|
with:
|
2021-03-30 07:05:58 -05:00
|
|
|
|
node-version: ${{ matrix.node_version }}
|
2020-08-27 14:23:56 -05:00
|
|
|
|
- name: Install pnpm
|
2022-03-27 14:42:52 -05:00
|
|
|
|
run: npm i pnpm@6.32.3 -g
|
2022-03-21 17:12:39 -05:00
|
|
|
|
- uses: actions/cache@v3
|
2021-04-24 16:28:52 -05:00
|
|
|
|
with:
|
|
|
|
|
path: ~/.pnpm-store
|
2021-12-29 13:23:20 -05:00
|
|
|
|
key: pnpm-${{ hashFiles('pnpm-lock.yaml') }}
|
2020-08-27 14:23:56 -05:00
|
|
|
|
- name: Install
|
2021-12-29 13:23:20 -05:00
|
|
|
|
run: pnpm recursive install --frozen-lockfile --ignore-scripts
|
|
|
|
|
- name: build
|
|
|
|
|
run: pnpm build
|
2021-04-24 16:28:52 -05:00
|
|
|
|
- name: Test
|
|
|
|
|
run: pnpm test
|
|
|
|
|
ci-e2e-ui:
|
2021-12-31 12:32:20 -05:00
|
|
|
|
needs: [format, lint]
|
2021-04-24 16:28:52 -05:00
|
|
|
|
runs-on: ubuntu-latest
|
2021-12-31 12:32:20 -05:00
|
|
|
|
name: UI Test E2E Node 16
|
2021-04-24 16:28:52 -05:00
|
|
|
|
steps:
|
2022-03-07 14:44:27 -05:00
|
|
|
|
- uses: actions/checkout@v3
|
2022-03-02 16:41:55 -05:00
|
|
|
|
- uses: actions/setup-node@v3
|
2021-04-24 16:28:52 -05:00
|
|
|
|
with:
|
2021-12-31 12:32:20 -05:00
|
|
|
|
node-version: 16
|
2021-04-24 16:28:52 -05:00
|
|
|
|
- name: Install pnpm
|
2022-03-05 12:44:10 -05:00
|
|
|
|
run: npm i pnpm@latest -g
|
2022-03-21 17:12:39 -05:00
|
|
|
|
- uses: actions/cache@v3
|
2021-04-24 16:28:52 -05:00
|
|
|
|
with:
|
|
|
|
|
path: ~/.pnpm-store
|
2021-12-29 13:23:20 -05:00
|
|
|
|
key: pnpm-${{ hashFiles('pnpm-lock.yaml') }}
|
2021-04-24 16:28:52 -05:00
|
|
|
|
- name: Install
|
|
|
|
|
## we need scripts, pupetter downloads aditional content
|
2021-12-29 13:23:20 -05:00
|
|
|
|
run: pnpm recursive install --frozen-lockfile
|
2021-12-31 12:32:20 -05:00
|
|
|
|
- name: build
|
|
|
|
|
run: pnpm build
|
2021-04-24 16:28:52 -05:00
|
|
|
|
- name: Test UI
|
|
|
|
|
run: pnpm test:e2e:ui
|
2021-09-12 09:21:19 -05:00
|
|
|
|
# env:
|
2021-12-29 13:23:20 -05:00
|
|
|
|
# DEBUG: verdaccio:e2e*
|
2022-03-05 12:44:10 -05:00
|
|
|
|
# FIXME verify why fails on Node 16 (locally works fine)
|
|
|
|
|
# ci-e2e-cli:
|
|
|
|
|
# needs: [format, lint]
|
|
|
|
|
# runs-on: ubuntu-latest
|
|
|
|
|
# # TODO: fails on migrate to node 16, we need to check why
|
|
|
|
|
# name: CLI Test E2E Node 16
|
|
|
|
|
# steps:
|
2022-03-07 14:44:27 -05:00
|
|
|
|
# - uses: actions/checkout@v3
|
2022-03-05 12:44:10 -05:00
|
|
|
|
# - uses: actions/setup-node@v3
|
|
|
|
|
# with:
|
|
|
|
|
# node-version: 16
|
|
|
|
|
# - name: Install pnpm
|
|
|
|
|
# run: npm i pnpm@latest -g
|
2022-03-21 17:12:39 -05:00
|
|
|
|
# - uses: actions/cache@v3
|
2022-03-05 12:44:10 -05:00
|
|
|
|
# with:
|
|
|
|
|
# path: ~/.pnpm-store
|
|
|
|
|
# key: pnpm-${{ hashFiles('pnpm-lock.yaml') }}
|
|
|
|
|
# - name: Install
|
|
|
|
|
# ## we need scripts, pupetter downloads aditional content
|
|
|
|
|
# run: pnpm recursive install --frozen-lockfile
|
|
|
|
|
# - name: build
|
|
|
|
|
# run: pnpm build
|
|
|
|
|
# - name: Test CLI
|
|
|
|
|
# run: pnpm test:e2e:cli
|
|
|
|
|
# env:
|
|
|
|
|
# DEBUG: verdaccio*
|
2021-09-18 02:20:24 -05:00
|
|
|
|
sync-translations:
|
2022-03-05 12:44:10 -05:00
|
|
|
|
# needs: [ci-e2e-cli, ci-e2e-ui]
|
|
|
|
|
needs: [ci-e2e-ui]
|
2021-09-18 02:20:24 -05:00
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
name: synchronize translations
|
|
|
|
|
if: (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'workflow_dispatch'
|
|
|
|
|
steps:
|
2022-03-07 14:44:27 -05:00
|
|
|
|
- uses: actions/checkout@v3
|
2022-03-02 16:41:55 -05:00
|
|
|
|
- uses: actions/setup-node@v3
|
2021-09-18 02:20:24 -05:00
|
|
|
|
with:
|
2021-12-31 12:32:20 -05:00
|
|
|
|
node-version: 16
|
2021-09-18 02:20:24 -05:00
|
|
|
|
- name: Install pnpm
|
2022-03-27 14:42:52 -05:00
|
|
|
|
run: npm i pnpm@6.32.3 -g
|
2022-03-21 17:12:39 -05:00
|
|
|
|
- uses: actions/cache@v3
|
2021-09-18 02:20:24 -05:00
|
|
|
|
with:
|
|
|
|
|
path: ~/.pnpm-store
|
2021-12-29 13:23:20 -05:00
|
|
|
|
key: pnpm-${{ hashFiles('pnpm-lock.yaml') }}
|
2021-09-18 02:20:24 -05:00
|
|
|
|
- name: Install
|
|
|
|
|
## we need scripts, pupetter downloads aditional content
|
|
|
|
|
run: pnpm recursive install --frozen-lockfile
|
2021-12-31 14:57:20 -05:00
|
|
|
|
- name: build
|
|
|
|
|
run: pnpm build
|
2021-09-18 02:43:14 -05:00
|
|
|
|
- name: generate website translations
|
2021-12-29 13:23:20 -05:00
|
|
|
|
run: pnpm write-translations --filter ...@verdaccio/website
|
2021-09-18 02:43:14 -05:00
|
|
|
|
- name: sync
|
2021-09-18 02:20:24 -05:00
|
|
|
|
env:
|
|
|
|
|
CROWDIN_VERDACCIO_PROJECT_ID: ${{ secrets.CROWDIN_VERDACCIO_PROJECT_ID }}
|
|
|
|
|
CROWDIN_VERDACCIO_API_KEY: ${{ secrets.CROWDIN_VERDACCIO_API_KEY }}
|
|
|
|
|
CONTEXT: production
|
2021-12-29 13:23:20 -05:00
|
|
|
|
run: pnpm crowdin:sync
|