Skip to content

fix: node and pnpm version in the github actions #1602

fix: node and pnpm version in the github actions

fix: node and pnpm version in the github actions #1602

Workflow file for this run

name: "PR Checks"
on:
pull_request:
types: [opened, synchronize, edited, closed]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
validate-title:
name: Validate PR Title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
audit:
name: Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: FuelLabs/github-actions/setups/node@hf/fix/setup-pnpm
with:
node-version: 18.18.2
pnpm-version: 8.15.7
pnpm-recursive: false
- run: pnpm audit --prod
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
checks: write
pull-requests: write
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: FuelLabs/github-actions/setups/node@hf/fix/setup-pnpm
with:
node-version: 18.18.2
pnpm-version: 8.15.7
pnpm-recursive: false
- name: Run lint
run: pnpm check:prod