This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
chore(deps): update dependency rollup to v4 #691
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: pull request | |
on: [pull_request] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checking out project | |
uses: actions/checkout@v2 | |
- name: Setting up node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
- name: Installing dependencies | |
run: yarn install | |
- name: Running tests | |
run: yarn test-ci | |
- name: Uploading dist | |
uses: actions/upload-artifact@v1 | |
with: | |
name: dist | |
path: dist |