Don't raise error when service call fails (#116) #5
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: Yarn lint and build | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "**.js" | |
- "**.ts" | |
- "ts/**" | |
- ".eslintrc.cjs" | |
- "package.json" | |
- "rollup.config.js" | |
- "tsconfig.json" | |
pull_request: | |
branches: [main] | |
paths: | |
- "**.js" | |
- "**.ts" | |
- "ts/**" | |
- ".eslintrc.cjs" | |
- "package.json" | |
- "rollup.config.js" | |
- "tsconfig.json" | |
jobs: | |
yarn: | |
name: Yarn lint and build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
- "lts/iron" | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
with: | |
fetch-depth: 2 | |
- name: Set up Node ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install | |
run: yarn install | |
- name: Lint | |
run: | | |
yarn lint:fix | |
- name: Check for changes from lint | |
id: change_lint | |
# https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#environment-files | |
run: echo "changed=$(git status --porcelain | wc -l)" >> $GITHUB_OUTPUT | |
- name: Check if clean from lint | |
if: steps.change_lint.outputs.changed != 0 | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
core.setFailed('Repo is dirty after lint! Run yarn lint:fix locally before pushing changes.') | |
- name: Build | |
run: | | |
yarn build | |
- name: Check for changes from build | |
id: change_build | |
# https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#environment-files | |
run: echo "changed=$(git status --porcelain | wc -l)" >> $GITHUB_OUTPUT | |
- name: Check if clean from build | |
if: steps.change_build.outputs.changed != 0 | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
core.setFailed('Repo is dirty after build! Run yarn build locally before pushing changes.') |