Bump vite from 4.5.2 to 4.5.3 #3064
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
# https://redwoodjs.com/docs/how-to/test-in-github-actions | |
name: Redwood CI | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
env: | |
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres | |
TEST_DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres | |
DISCORD_MINT_BOT_KEY: ${{ secrets.DISCORD_MINT_BOT_KEY }} | |
DISCORD_VOTE_BOT_KEY: ${{ secrets.DISCORD_VOTE_BOT_KEY }} | |
DISCORD_ROLES_BOT_KEY: ${{ secrets.DISCORD_ROLES_BOT_KEY }} | |
MORALIS_API_KEY: ${{ secrets.MORALIS_API_KEY }} | |
DATADOG_API_KEY: ${{ secrets.DATADOG_API_KEY }} | |
WALLET_CONNECT_PROJECT_ID: ${{ secrets.WALLET_CONNECT_PROJECT_ID }} | |
CLERK_PUBLISHABLE_KEY: ${{ secrets.CLERK_PUBLISHABLE_KEY }} | |
CLERK_SECRET_KEY: ${{ secrets.CLERK_SECRET_KEY }} | |
CLERK_SIGNIN_PORTAL_URL: ${{ secrets.CLERK_SIGNIN_PORTAL_URL }} | |
CLERK_PORTAL_URL: ${{ secrets.CLERK_PORTAL_URL }} | |
CLERK_WEBHOOK_SECRET_KEY: ${{ secrets.CLERK_WEBHOOK_SECRET_KEY }} | |
MINT_SECRET_VERIFY: ${{ secrets.MINT_SECRET_VERIFY }} | |
PRIVATE_KEY_VERIFY: ${{ secrets.PRIVATE_KEY_VERIFY }} | |
AUTHORIZED_PRIVATE_KEY: ${{ secrets.AUTHORIZED_PRIVATE_KEY }} | |
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: postgres | |
# 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 | |
# run custom build command | |
- run: yarn build-ci | |
# build the redwood app | |
- run: yarn rw build | |
# run Cypress tests | |
- name: Cypress run | |
uses: cypress-io/github-action@v5 | |
with: | |
start: yarn rw serve | |
wait-on: 'http://localhost:8910' | |
record: false | |
project: packages/cypress | |
config-file: cypress.config.ts | |
# run our linter | |
- run: yarn rw lint | |
# run the api tests | |
- run: yarn rw test api --no-watch | |
env: | |
INFINITY_KEYS_SECRET: ${{ secrets.INFINITY_KEYS_SECRET }} | |
# run the web tests | |
# TODO: uncomment this when we have web tests running | |
# - run: yarn rw test web --no-watch |