website: Bug fixes in domains #2305
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |