Skip to content
This repository has been archived by the owner on May 20, 2024. It is now read-only.

Update test.yml

Update test.yml #6

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [19.x]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm i
- name: Check formatting
run: pnpm format-check
- name: Build project
run: pnpm build
# - name: Run tests
# run: pnpm test