Merge pull request #91 from skyflowapi/SK-1698 #2
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 pipeline for main branch | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
ci-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 14.17.6 | |
- name: install node_modules | |
run: npm install | |
- name: Run tests | |
run: npm run test | |
- name: Build | |
run: npm run build |