Skip to content

Bump volta-cli/action from 4 to 5 (#2025) #2759

Bump volta-cli/action from 4 to 5 (#2025)

Bump volta-cli/action from 4 to 5 (#2025) #2759

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request: {}
concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Use Node.js
uses: volta-cli/action@v5
with:
node-version: 20
- name: Install pnpm
run: volta install pnpm@10
- name: Install Dependencies
run: pnpm install
- name: Run Tests
run: |
pnpm lint:js
pnpm test
env:
CI: true