Skip to content

Bump GitHub action workflows to their latest versions #267

Bump GitHub action workflows to their latest versions

Bump GitHub action workflows to their latest versions #267

Workflow file for this run

#
# this will run eslint, prettier and astro check
#
# Created August 22nd, 2025
# @author ywarezk
# @license MIT
#
name: Check
on:
pull_request:
types: [opened, synchronize, ready_for_review, reopened]
concurrency:
group: pr-${{ github.event.pull_request.number }}-check
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6.0.2
with:
fetch-depth: 1
- name: Setup pnpm
uses: pnpm/action-setup@v5.0.0
- name: Setup Node.js
uses: actions/setup-node@v6.3.0
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run checks
run: pnpm check