Skip to content

Bump embla-carousel-react from 8.0.0-rc17 to 8.1.6 #76

Bump embla-carousel-react from 8.0.0-rc17 to 8.1.6

Bump embla-carousel-react from 8.0.0-rc17 to 8.1.6 #76

name: CI (apps) Node
on:
pull_request:
branches:
- main
- dev
paths:
- "apps/**"
- ".github/workflows/main_pr_node_apps.yaml"
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
ci:
runs-on: ubuntu-latest
# needs: build
strategy:
fail-fast: true
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/[email protected]
- uses: pnpm/[email protected]
with:
version: 8
- uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
# install
- name: Install dependencies 📦
run: pnpm i --frozen-lockfile
# generate
- name: Generate deps 🍪
run: pnpm run apps:generate
env:
CI: true
# lint
- name: Typecheck 🧷
run: pnpm run apps:typecheck
- name: Lint 🛫
run: pnpm run apps:lint
# build
- name: Build 🏗
run: pnpm run apps:build
# test
- name: Test 🧪
run: pnpm run apps:test