Merge pull request #13 from 51ngul4r1ty/issue/000487/fix-update-backl… #44
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: Node & NPM versions | |
run: | | |
echo Node Version | |
node --version | |
echo | |
echo NPM Version | |
npm --version | |
echo | |
- name: Install NPM packages | |
run: npm ci | |
- name: Build All Packages | |
run: | | |
echo Building... | |
npm run build-all |