Browse Source

Limit what GitHub actions need to run for specific directories

pull/2032/head
Gabe Kangas 3 years ago
parent
commit
43aba0a67c
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA
  1. 14
      .github/workflows/build-next.yml
  2. 6
      .github/workflows/chromatic.yml
  3. 6
      .github/workflows/hls-tests.yml
  4. 2
      .github/workflows/javascript-formatting.yml
  5. 14
      .github/workflows/test.yaml

14
.github/workflows/build-next.yml

@ -1,12 +1,16 @@ @@ -1,12 +1,16 @@
name: Build web app
on: [push, pull_request]
on:
push:
paths:
- web/**
jobs:
run:
name: npm run build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Checkout repo
uses: actions/checkout@v2
- name: Install dependencies
run: cd web && npm install && npm run build
- name: Install dependencies
run: cd web && npm install && npm run build

6
.github/workflows/chromatic.yml

@ -3,8 +3,10 @@ @@ -3,8 +3,10 @@
# Workflow name
name: 'Chromatic'
# Event for the workflow
on: push
on:
push:
paths:
- web/**
# List of jobs
jobs:

6
.github/workflows/hls-tests.yml

@ -3,10 +3,10 @@ name: Automated HLS tests @@ -3,10 +3,10 @@ name: Automated HLS tests
on:
push:
paths-ignore:
- 'webroot/**'
- 'web/**'
pull_request:
paths-ignore:
- 'webroot/**'
- 'web/**'
env:
S3_BUCKET: ${{ secrets.S3_BUCKET }}
@ -26,5 +26,3 @@ jobs: @@ -26,5 +26,3 @@ jobs:
go-version: '1.17.2'
- name: Run HLS tests
run: cd test/automated/hls && ./run.sh

2
.github/workflows/javascript-formatting.yml

@ -5,6 +5,7 @@ on: @@ -5,6 +5,7 @@ on:
push:
paths:
- web/**
jobs:
prettier:
runs-on: ubuntu-latest
@ -23,7 +24,6 @@ jobs: @@ -23,7 +24,6 @@ jobs:
with:
# This part is also where you can pass other options, for example:
prettier_options: --write **/*.{js,ts,jsx,tsx,css,md}
working_directory: web
only_changed: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

14
.github/workflows/test.yaml

@ -1,6 +1,13 @@ @@ -1,6 +1,13 @@
name: Tests
on: [push, pull_request]
on:
push:
paths-ignore:
- 'web/**'
pull_request:
paths-ignore:
- 'web/**'
jobs:
test:
strategy:
@ -14,7 +21,7 @@ jobs: @@ -14,7 +21,7 @@ jobs:
- name: Install go
uses: actions/setup-go@v3
with:
go-version: "^1"
go-version: '^1'
- name: Run tests
run: go test ./...
@ -35,8 +42,7 @@ jobs: @@ -35,8 +42,7 @@ jobs:
- name: Install go
uses: actions/setup-go@v3
with:
go-version: "^1"
go-version: '^1'
- name: Run tests
run: go test ./...

Loading…
Cancel
Save