Skip to content

website: Bug fixes in domains #2305

website: Bug fixes in domains

website: Bug fixes in domains #2305

Workflow file for this run

name: Zesty Website CI Dev
on:
pull_request:
branches: [stage,accounts,production,dev]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-check:
runs-on: ubuntu-latest
env:
PRODUCTION: 'false'
steps:
- uses: actions/checkout@v3
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: ~/.npm
key: npm-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: npm-${{ runner.os }}-
- name: Setup custom host for mylocal
run: echo "127.0.0.1 test.zesty.io" | sudo tee -a /etc/hosts
- name: Install dependencies
run: npm install
- name: Check format and linters
run: npm run test-all
- name: Build Project
run: npm run build