Skip to content

Enable specifying custom Recombee region (also updates a lot of packages and rewrites to Vite) #9

Enable specifying custom Recombee region (also updates a lot of packages and rewrites to Vite)

Enable specifying custom Recombee region (also updates a lot of packages and rewrites to Vite) #9

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Build
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- uses: dprint/[email protected]
- run: npm run lint
- run: npm run build
- run: npm run lintFunctions