Bump rollup from 3.29.4 to 4.6.1 #40
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: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Automated Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v1 | |
- name: Install NodeJS | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: Install Dependencies | |
run: npm install | |
- name: Execute Tests | |
run: npm test | |
- name: Upload Coverage Report | |
run: npm run codecov | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |