Change DATABASE_URL to FPX_DATABASE_URL #89
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
# This workflow will be triggered by a GitHub pull-request. | |
--- | |
name: Build node packages | |
on: | |
pull_request: | |
branches: ["*"] | |
push: | |
branches: ["main", "release-*"] | |
env: | |
CARGO_TERM_COLOR: always | |
FORCE_COLOR: true | |
jobs: | |
build_packages: | |
name: Build packages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: lts/* | |
cache: npm | |
- name: Install dependencies | |
run: npm ci --workspaces | |
- name: Lint all workspaces | |
run: npm run lint:ci --workspaces | |
- name: Build all workspaces | |
run: npm run build --workspaces --if-present |