Skip to content

Merge pull request #68 from eugene-manuilov/feature/nvmrc #242

Merge pull request #68 from eugene-manuilov/feature/nvmrc

Merge pull request #68 from eugene-manuilov/feature/nvmrc #242

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm
- name: Install dependencies
run: pnpm i
- name: Build
run: pnpm build