Skip to content

update readme

update readme #20

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
env:
SALEOR_AUTH_TOKEN: ${{ secrets.SALEOR_AUTH_TOKEN }}
NEXT_PUBLIC_SITE_URL: ${{ vars.NEXT_PUBLIC_SITE_URL }}
NEXT_PUBLIC_SALEOR_ORIGIN: ${{ vars.NEXT_PUBLIC_SALEOR_ORIGIN }}
NEXT_PUBLIC_SALEOR_GRAPHQL_ENDPOINT: ${{ vars.NEXT_PUBLIC_SALEOR_GRAPHQL_ENDPOINT }}
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- name: Install dependencies
run: bun install
- name: Install Playwright browsers
run: bunx playwright install --with-deps
- name: Run CI
run: bun run ci