Add GitHub Actions CI workflow

client-spec/clarity
Owen Voke 2020-06-09 11:10:15 +01:00 committed by Marco Bonelli
parent c3699ce546
commit bcab713a65
1 changed files with 27 additions and 0 deletions

27
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: CI
on: ['push', 'pull_request']
jobs:
ci:
runs-on: ubuntu-latest
name: CI
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install npm dependencies
run: npm ci
- name: Test
run: npm test
- name: Build
run: bash scripts/build.sh
- name: Deploy
run: bash scripts/deploy.sh
if: github.repository == 'tldr-pages/tldr' && github.branch == 'master'