chore(deps): bump actions/checkout from 4.1.1 to 4.1.3 #32
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- releases/* | |
jobs: | |
check-format: | |
name: Check Format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup | |
id: metadata | |
uses: 100terres/job-setup@0d2a4b85eeac0d959c2769f0c100db75c9cf94e2 | |
with: | |
output-changed-files: "true" | |
changed-files-filters: | | |
**/*.json | |
**/*.md | |
**/*.yml | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
- name: Install NodeJS | |
uses: actions/[email protected] | |
with: | |
node-version-file: .node-version | |
cache: pnpm | |
- name: Install NodeJS Dependencies | |
run: pnpm install | |
- name: Check Format | |
run: pnpm run format:check -- ${{ steps.metadata.outputs.changed-files }} |