chore(deps): update dependency rollup to v4 #479
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
# .github/workflows/release.yml | |
name: Pull Request | |
on: pull_request | |
jobs: | |
test: | |
name: Pull Request | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
- name: Run install | |
run: yarn install --frozen-lockfile | |
- name: Test | |
run: yarn test | |
- name: Build | |
run: yarn build | |
- name: Report Coverage | |
run: yarn report-coverage |