Skip to content

Update Nightly icon #161

Update Nightly icon

Update Nightly icon #161

Workflow file for this run

name: CI
on:
pull_request:
workflow_dispatch:
env:
CI: true
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
checks:
name: Checks
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10.4.1
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "18.x"
cache: pnpm
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build Packages
run: pnpm build:all
- name: Lint
run: pnpm lint
- name: Unit & Integration Tests
run: pnpm test