Skip to content

chore(deps): bump the npm_and_yarn group with 3 updates #62

chore(deps): bump the npm_and_yarn group with 3 updates

chore(deps): bump the npm_and_yarn group with 3 updates #62

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on pull request events but only for the main branch
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: latest
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm i
- name: Run linters
run: pnpm biome ci .
# Install dependencies using composer.json in public/api
- name: Install PHP Packages
uses: "ramsey/composer-install@v3"
with:
working-directory: "public/api"