Adding linting and security scanners #154
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 | |
on: | |
push: | |
tags-ignore: | |
- "**" | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test-unit: | |
name: test-unit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup | |
- name: test-unit | |
run: make test-unit | |
test-integration: | |
name: test-integration | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup | |
- name: test-integration | |
run: make test-integration | |
# test-e2e: | |
# name: test-e2e | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - uses: ./.github/actions/setup | |
# - uses: ./.github/actions/shipwright | |
# - name: test-e2e | |
# run: make test-e2e |