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

👼🏼 New born

👼🏼 New born #1

Workflow file for this run

name: Build and tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest] # macos-latest, windows-latest
node: [20]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
registry-url: https://registry.npmjs.org/
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint project
run: pnpm lint
# - name: Test project
# run: pnpm test
- name: Build project
run: pnpm build