2021-03-09 12:39:13 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ '*' ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ '*' ]
|
|
|
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
ci:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
LINGDOCS_DICTIONARY_URL: ${{ secrets.LINGDOCS_DICTIONARY_URL }}
|
2021-03-09 13:20:55 +00:00
|
|
|
LINGDOCS_NPM_TOKEN: ${{ secrets.LINGDOCS_NPM_TOKEN }}
|
2021-03-14 15:19:11 +00:00
|
|
|
strategy:
|
2021-03-09 12:39:13 +00:00
|
|
|
matrix:
|
|
|
|
node-version: [12.x, 14.x, 15.x]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- run: yarn install
|
|
|
|
- run: yarn build-website
|
|
|
|
- run: yarn build-library
|
2021-03-14 15:13:07 +00:00
|
|
|
- run: yarn test
|