Skip to content

Bump open-props from 1.5.8 to 1.6.21 #1287

Bump open-props from 1.5.8 to 1.6.21

Bump open-props from 1.5.8 to 1.6.21 #1287

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
types: [opened, synchronize]
# With pre-rendering enabled, build loads modules, which triggers imports.
# These variables are just dummies that need to exist while build and check run.
env:
EO_API_KEY: ${{ secrets.EO_API_KEY }}
EO_LIST_ID: ${{ secrets.EO_LIST_ID }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
IMGIX_DOMAIN: ${{ secrets.IMGIX_DOMAIN }}
IMGIX_TOKEN: ${{ secrets.IMGIX_TOKEN }}
PUBLIC_CANONICAL_ORIGIN: ${{ secrets.PUBLIC_CANONICAL_ORIGIN }}
PUBLIC_FATHOM_SITE_ID: ${{ secrets.PUBLIC_FATHOM_SITE_ID }}
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
TURBO_REMOTE_ONLY: true
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npx turbo run lint
- name: Check
run: npx turbo run check
# - name: Install Playwright Chromium
# run: npx playwright install --with-deps chromium
# - name: Run Playwright tests
# run: npx turbo run test