Skip to content

Bump rollup from 4.21.3 to 4.22.4 #6

Bump rollup from 4.21.3 to 4.22.4

Bump rollup from 4.21.3 to 4.22.4 #6

name: Run Lint, Tests, and Prettier checks
on:
pull_request:
branches: ["*"]
jobs:
lint-test-prettier-check:
runs-on: ubuntu-latest
name: Lint, Test, and Prettier Check
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20.17.0
cache: "npm"
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
- name: Run Lint
run: npm run lint
- name: Run Tests
run: npm run test
- name: Run Prettier
run: npm run prettier