Skip to content
Snippets Groups Projects
Commit 724cda1d authored by Xiao Gui's avatar Xiao Gui
Browse files

[skip ci] update GHA to allow for skip ci

parent a11bc116
No related branches found
No related tags found
No related merge requests found
name: Backend tests name: Backend tests
on: [push] on: [ push ]
env: env:
NODE_ENV: test NODE_ENV: test
jobs: jobs:
install_dep: install_dep:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
node-version: [10.x, 12.x] node-version: [10.x, 12.x]
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: cd into deploy, npm install - name: cd into deploy, npm install
run: | run: |
cd deploy cd deploy
npm i npm i
- name: test no env - name: test no env
run: | run: |
cd deploy cd deploy
npm run testNoEnv npm run testNoEnv
- name: test with env - name: test with env
env: env:
REFRESH_TOKEN: ${{ secrets.REFRESH_TOKEN }} REFRESH_TOKEN: ${{ secrets.REFRESH_TOKEN }}
......
...@@ -15,8 +15,8 @@ env: ...@@ -15,8 +15,8 @@ env:
jobs: jobs:
buildimage: buildimage:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: self-hosted runs-on: self-hosted
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
...@@ -28,8 +28,8 @@ jobs: ...@@ -28,8 +28,8 @@ jobs:
docker build --build-arg BACKEND_URL=${BACKEND_URL} -t ${DOCKER_IMAGE_NAME}:${DOCKER_IMAGE_TAG} . docker build --build-arg BACKEND_URL=${BACKEND_URL} -t ${DOCKER_IMAGE_NAME}:${DOCKER_IMAGE_TAG} .
env: env:
BACKEND_URL: ${{ env.ATLAS_URL }} BACKEND_URL: ${{ env.ATLAS_URL }}
test: test:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: self-hosted runs-on: self-hosted
needs: buildimage needs: buildimage
steps: steps:
...@@ -47,7 +47,6 @@ jobs: ...@@ -47,7 +47,6 @@ jobs:
--env REFRESH_TOKEN=${{ secrets.REFRESH_TOKEN }} \ --env REFRESH_TOKEN=${{ secrets.REFRESH_TOKEN }} \
-dit \ -dit \
${DOCKER_IMAGE_NAME}:${DOCKER_IMAGE_TAG} ${DOCKER_IMAGE_NAME}:${DOCKER_IMAGE_TAG}
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Start pptr docker container with name ${{ env.DOCKER_E2E_PPTR }} - name: Start pptr docker container with name ${{ env.DOCKER_E2E_PPTR }}
run: | run: |
......
name: Frontend Tests (Karma + Mocha + Chai) name: Frontend Tests (Karma + Mocha + Chai)
on: [push] on: [ push ]
jobs: jobs:
build: build:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
node-version: [10.x, 12.x] node-version: [10.x, 12.x]
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment