Created
August 9, 2022 23:34
-
-
Save adamloving/992ef59d9e9ae7add86ffd462f552dc2 to your computer and use it in GitHub Desktop.
RedwoodJS CI workflow action for Github (put this in .github/workflows)
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 a basic workflow to help you get started with Actions | |
name: CI | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the "main" branch | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js v16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
- name: Set up Postgres | |
uses: CasperWA/postgresql-action@v1 | |
with: | |
postgresql version: '14' | |
postgresql db: 'test' | |
postgresql user: test | |
postgresql password: password | |
- name: Install dependencies | |
run: yarn install --immutable | |
shell: bash | |
- name: Run Lint | |
run: yarn rw lint | |
shell: bash | |
- name: Run Diagnostics | |
run: yarn rw check | |
shell: bash | |
- name: Run Build | |
run: yarn rw build | |
shell: bash | |
- name: Run Tests | |
run: yarn rw test | |
env: | |
TEST_DATABASE_URL: postgresql://test:password@localhost:5432/test | |
shell: bash | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment