Remove chmod Command #79
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: build | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: ["*", "!latest"] | |
push: | |
branches: [latest, main] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Install deps | |
run: yarn install | |
- name: Fix sorting | |
run: yarn sort | |
- name: Fix formatting | |
run: yarn format | |
- name: Check lint | |
run: yarn lint | |
- name: Clean Project | |
run: yarn clean | |
- name: Build project | |
run: yarn build | |
- name: Test project | |
run: yarn test | |
- name: Run Project | |
run: node dist/google-rank.js --help | |
env: | |
NODE_OPTIONS: --require ${{ github.workspace }}/.pnp.cjs | |
- name: Check diff | |
run: git diff --exit-code HEAD |