Merge pull request #481 from 51ngul4r1ty/issue/000480/fix-doc #983
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Checks | |
run: | | |
echo checking files... | |
npm run check | |
- name: Show NPM version | |
run: npm --version | |
- name: Install NPM packages | |
run: npm ci | |
- name: Transpile | |
run: | | |
echo transpiling... | |
npm run build |