Skip to content

Bump rollup from 4.12.0 to 4.13.2 #158

Bump rollup from 4.12.0 to 4.13.2

Bump rollup from 4.12.0 to 4.13.2 #158

Workflow file for this run

name: Typescript + prettier checks
on:
push:
branches: [master]
pull_request:
branches: ['**/**']
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
validate:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
# Using node action to manage caching node_modules
cache: 'yarn'
- name: Install dependencies
run: yarn install
# Validates project
- name: Typescript + prettier checks
run: yarn validate