update ci

This commit is contained in:
Bill D 2021-03-14 19:13:07 +04:00
parent cc838807ad
commit 455547d1e5
2 changed files with 34 additions and 1 deletions

View File

@ -25,4 +25,4 @@ jobs:
- run: yarn install
- run: yarn build-website
- run: yarn build-library
- run: yarn test-ci
- run: yarn test

33
.github/workflows/publish.yml vendored Normal file
View File

@ -0,0 +1,33 @@
name: CI
on:
push:
branches: [ 'master' ]
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
env:
LINGDOCS_DICTIONARY_URL: ${{ secrets.LINGDOCS_DICTIONARY_URL }}
LINGDOCS_NPM_TOKEN: ${{ secrets.LINGDOCS_NPM_TOKEN }}
strategy:
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 }}
- name: Check if version has been updated
id: check
uses: EndBug/version-check@v1
token: ${{ secrets.GITHUB_TOKEN }}
- name: Publish when version changed
if: steps.check.outputs.changed == 'true'
run: |
yarn install
yarn build-library
yarn test
npm publish