diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml index 1da8b4a27..27f7af80a 100644 --- a/.github/workflows/ci-main.yml +++ b/.github/workflows/ci-main.yml @@ -9,6 +9,8 @@ on: paths-ignore: - website pull_request: + branches: + - master env: POSTGRES_DB: authentik diff --git a/.github/workflows/ci-outpost.yml b/.github/workflows/ci-outpost.yml index c5ad35de3..163981675 100644 --- a/.github/workflows/ci-outpost.yml +++ b/.github/workflows/ci-outpost.yml @@ -7,6 +7,8 @@ on: - next - version-* pull_request: + branches: + - master jobs: lint-golint: diff --git a/.github/workflows/ci-web.yml b/.github/workflows/ci-web.yml index cd518ee8e..9034e1df4 100644 --- a/.github/workflows/ci-web.yml +++ b/.github/workflows/ci-web.yml @@ -7,6 +7,8 @@ on: - next - version-* pull_request: + branches: + - master jobs: lint-eslint: diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index b89f61429..7718c2c1d 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -157,9 +157,9 @@ jobs: steps: - uses: actions/checkout@v2 - name: Setup Node.js environment - uses: actions/setup-node@v2.4.0 + uses: actions/setup-node@v2 with: - node-version: 12.x + node-version: '16' - name: Build web api client and web ui run: | export NODE_ENV=production diff --git a/.github/workflows/web-api-publish.yml b/.github/workflows/web-api-publish.yml index 30925cb1a..25ac5e6f6 100644 --- a/.github/workflows/web-api-publish.yml +++ b/.github/workflows/web-api-publish.yml @@ -12,7 +12,7 @@ jobs: # Setup .npmrc file to publish to npm - uses: actions/setup-node@v2 with: - node-version: '16.x' + node-version: '16' registry-url: 'https://registry.npmjs.org' - name: Generate API Client run: make gen-web