Merge pull request #485 from IvanPostu/issue-446 #861
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: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Run tests | |
run: | | |
npm i | |
npm run test | |
- name: Nightly build | |
run: | | |
npm run release | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: build | |
path: dist/ |