Skip to content

Feature: [HOP-48] Building SVGs #335

Feature: [HOP-48] Building SVGs

Feature: [HOP-48] Building SVGs #335

Workflow file for this run

name: CI
# Pnpm setup based on https://pnpm.io/continuous-integration#github-actions
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js
uses: actions/setup-node@v3
with:
cache: "pnpm"
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Build packages
run: pnpm build
- name: Lint packages
run: pnpm lint
- name: Test packages
run: pnpm test