chore: add manisha1997 to admins #125
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: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test-actions: | |
name: Test Actions | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- name: Checkout dx-automator | |
uses: actions/checkout@v3 | |
- name: Set up Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
- name: Install Dependencies | |
run: npm install | |
- name: Build & Test | |
run: npm run all | |
- name: Show git status and fail on diff | |
run: | | |
git status | |
git diff | |
test -z "$(git status --porcelain)" | |
test-examples: | |
name: Test Examples | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- name: Checkout dx-automator | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
cache: 'pip' | |
- name: Install Dependencies | |
run: make test-install | |
- name: Test | |
run: make test |