Skip to content

Bump rollup from 3.29.1 to 4.8.0 #528

Bump rollup from 3.29.1 to 4.8.0

Bump rollup from 3.29.1 to 4.8.0 #528

Workflow file for this run

name: TS formatting
on:
pull_request:
push:
branches:
- main
- dev
defaults:
run:
shell: bash
working-directory: ts
jobs:
formatting-check:
name: TS Prettier formatting check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Check Format
run: npm run format-check
lint:
name: TS Lint check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm clean-install --ignore-scripts
- name: Check Lint
run: npm run lint-check