fix: typo in script list #26
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: Test Project | |
on: | |
- push | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
# Add private key to be able to access OpenGB repository | |
- uses: webfactory/ssh-agent@v0.9.0 | |
with: | |
ssh-private-key: ${{ secrets.GH_DEPLOY_KEY }} | |
- name: Install Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: "1.41.1" | |
- name: Build OpenGB | |
run: deno task cli:install | |
- name: Check Formatting | |
run: cd tests/test_project/ && opengb format --check | |
- name: Lint | |
run: cd tests/test_project/ && opengb lint | |
- name: Generate DB Migrations | |
run: cd tests/test_project/ && opengb db dev | |
- name: Run Tests | |
run: cd tests/test_project/ && opengb test |