Skip to content

chore(deps-dev): bump prettier from 3.3.0 to 3.3.3 #46

chore(deps-dev): bump prettier from 3.3.0 to 3.3.3

chore(deps-dev): bump prettier from 3.3.0 to 3.3.3 #46

Workflow file for this run

name: Pull Request
on:
pull_request:
paths-ignore:
- '.github/workflows/**'
- '!.github/workflows/PullRequest.yml'
permissions:
actions: write
checks: write
pull-requests: write
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Install Yarn
run: npm install -g yarn
shell: bash
- name: Install Dependencies
run: yarn --cwd install --frozen-lockfile
shell: bash
- name: Lint
run: yarn lint
shell: bash
- name: Test
run: yarn test
shell: bash