Introduce Nx and Adjust Workflow #1
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: | |
workflow_dispatch: | |
pull_request: | |
branches: ["*", "!latest"] | |
push: | |
branches: [latest, main] | |
jobs: | |
project: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Install deps | |
run: yarn install | |
- name: Clean Project | |
run: yarn clean | |
- name: Test project | |
run: yarn test | |
- name: Run Project | |
run: yarn google-rank --help | |
- name: Check diff | |
run: git diff --exit-code HEAD |