mirror of
https://github.com/pomerium/pomerium.git
synced 2025-07-20 18:18:08 +02:00
frontend: react+mui (#3004)
* mui v5 wip * wip * wip * wip * use compressor for all controlplane endpoints * wip * wip * add deps * fix authenticate URL * fix test * fix test * fix build * maybe fix build * fix integration test * remove image asset test * add yarn.lock
This commit is contained in:
parent
64d8748251
commit
2824faecbf
84 changed files with 13373 additions and 1455 deletions
28
.github/workflows/test.yaml
vendored
28
.github/workflows/test.yaml
vendored
|
@ -10,12 +10,18 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
go-version: [1.17.x]
|
||||
node-version: [16.x]
|
||||
platform: [ubuntu-latest, macos-latest]
|
||||
runs-on: ${{ matrix.platform }}
|
||||
steps:
|
||||
- uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: ${{ matrix.go-version }}
|
||||
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: set env vars
|
||||
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
|
||||
- uses: actions/checkout@v2
|
||||
|
@ -50,10 +56,18 @@ jobs:
|
|||
|
||||
cover:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
go-version: [1.17.x]
|
||||
node-version: [16.x]
|
||||
steps:
|
||||
- uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: 1.17.x
|
||||
go-version: ${{ matrix.go-version }}
|
||||
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
|
@ -99,6 +113,7 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
go-version: [1.17.x]
|
||||
node-version: [16.x]
|
||||
platform: [ubuntu-latest]
|
||||
deployment: [kubernetes, multi, nginx, single, traefik]
|
||||
idp: [auth0, azure, github, gitlab, google, oidc, okta, onelogin, ping]
|
||||
|
@ -107,6 +122,11 @@ jobs:
|
|||
- uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: ${{ matrix.go-version }}
|
||||
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: set env vars
|
||||
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
|
||||
- uses: actions/checkout@v2
|
||||
|
@ -141,12 +161,18 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
go-version: [1.17.x]
|
||||
node-version: [16.x]
|
||||
platform: [ubuntu-latest, macos-latest]
|
||||
runs-on: ${{ matrix.platform }}
|
||||
steps:
|
||||
- uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: ${{ matrix.go-version }}
|
||||
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue