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

feat: integrate theme synchronization using useTheme from next-themes… #5943

feat: integrate theme synchronization using useTheme from next-themes…

feat: integrate theme synchronization using useTheme from next-themes… #5943

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize]
# trigger on merge group as well (merge queue)
merge_group:
types: [checks_requested]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build, Lint & Test
runs-on: ubuntu-latest
environment: Preview
strategy:
matrix:
node_version: [18]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Run CI
run: |
pnpm install
pnpm lint
env:
PAYMENTS_ADMIN_SECRET: ${{ secrets.PAYMENTS_ADMIN_SECRET }}
NEXT_PUBLIC_PAYMENTS_API: ${{ vars.NEXT_PUBLIC_PAYMENTS_API }}