manual merge of sdk6 #15
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 IS INCOMPLETE AND NOT WORKING | |
name: Redwood CI | |
on: | |
pull_request: | |
branches: ['main'] | |
env: | |
DATABASE_URL: postgres://postgres:password@localhost:5432/postgres | |
TEST_DATABASE_URL: postgres://postgres:password@localhost:5432/postgres | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
services: | |
# Label used to access the service container | |
postgres: | |
# Docker Hub image | |
image: postgres | |
# Provide the password for postgres | |
env: | |
POSTGRES_PASSWORD: password | |
# Set health checks to wait until postgres has started | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
# Maps tcp port 5432 on service container to the host | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# install all the dependencies | |
- run: yarn install | |
# build the redwood app | |
- run: yarn rw build | |
# run the api tests | |
- run: yarn rw test api --no-watch | |
# run the web tests | |
- run: yarn rw test web --no-watch |