Bump sass from 1.78.0 to 1.79.1 in /axolotl-web #202
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: Axolotl pull request pipeline | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
checks: write | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yml | |
test: | |
uses: ./.github/workflows/test.yml | |
# Check if all important jobs passed | |
# This can be used as required status for branch protection rules. | |
pr-ok: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
- test | |
if: always() | |
steps: | |
- name: All tests ok | |
if: ${{ !(contains(needs.*.result, 'failure')) }} | |
run: exit 0 | |
- name: Some tests failed | |
if: ${{ contains(needs.*.result, 'failure') }} | |
run: exit 1 |