Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

Bump rollup from 2.79.1 to 4.14.1 in /packages/lib #430

Bump rollup from 2.79.1 to 4.14.1 in /packages/lib

Bump rollup from 2.79.1 to 4.14.1 in /packages/lib #430

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
# Checkout the repo
- name: Checkout
uses: actions/checkout@v1
# Setup Node.js build environment
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 16
# Cache dependencies
- name: Cache Dependencies
uses: actions/cache@v2
id: cache
with:
path: |
**/node_modules
key: yarn-${{ hashFiles('**/package.json', 'yarn.lock') }}
# Install project dependencies
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn
# Run linter
- name: Lint
run: yarn lint
# Run tests
- name: Run Tests
run: yarn test