Skip to content

Bump yaml from 2.6.1 to 2.7.0 #59

Bump yaml from 2.6.1 to 2.7.0

Bump yaml from 2.6.1 to 2.7.0 #59

Workflow file for this run

name: Build
on:
push:
env:
NODE_VERSION: 21
PNPM_VERSION: 9
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/[email protected]
- name: Setup PNPM
uses: pnpm/[email protected]
with:
version: ${{ env.PNPM_VERSION }}
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/[email protected]
- name: Setup PNPM
uses: pnpm/[email protected]
with:
version: ${{ env.PNPM_VERSION }}
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint