fix(tools): misc. updates to action workflows
This commit is contained in:
6
.github/workflows/codeql-analysis.yml
vendored
6
.github/workflows/codeql-analysis.yml
vendored
@ -1,4 +1,4 @@
|
||||
name: "Code scanning - action"
|
||||
name: "CodeQL Scanning"
|
||||
|
||||
on:
|
||||
push:
|
||||
@ -8,11 +8,11 @@ on:
|
||||
|
||||
jobs:
|
||||
CodeQL-Build:
|
||||
|
||||
name: CodeQL Build
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
- name: Checkout Source Files
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
# We must fetch at least the immediate parents so that if this is
|
||||
|
33
.github/workflows/cypress.yml
vendored
33
.github/workflows/cypress.yml
vendored
@ -1,36 +1,45 @@
|
||||
name: Cypress tests
|
||||
name: Cypress Tests
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- production-**
|
||||
# This will let us work on cypress config itself
|
||||
- cypress-**
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
cypress-run:
|
||||
name: Cypress Tests
|
||||
env:
|
||||
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
# our .npmrc sets a default version to 0, and prevents download. This installs it.
|
||||
# We use .npmrc to set the default version to 0, and prevents download during developement.
|
||||
# This installs it specifically in the CI runs.
|
||||
CYPRESS_INSTALL_BINARY: '4.11.0'
|
||||
name: Cypress run
|
||||
runs-on: ubuntu-18.04
|
||||
services:
|
||||
mongodb:
|
||||
image: mongo:3.5.5
|
||||
# ports may not be necessary, try without
|
||||
image: mongo:3.6.19
|
||||
ports:
|
||||
- 27017:27017
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
- name: Checkout Source Files
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Set up environment
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: Set Environment variables
|
||||
run: cp sample.env .env
|
||||
|
||||
- name: Install Dependencies
|
||||
run: |
|
||||
npm ci
|
||||
npm run ensure-env
|
||||
|
||||
- name: Seed Database
|
||||
run: npm run seed
|
||||
|
||||
- name: Cypress run
|
||||
uses: cypress-io/github-action@v1
|
||||
with:
|
||||
|
53
.github/workflows/lighthouse-ci.yml
vendored
53
.github/workflows/lighthouse-ci.yml
vendored
@ -1,28 +1,51 @@
|
||||
name: Lighthouse CI
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
# Treat the below branches as special case for working on workflows
|
||||
- actions-**
|
||||
schedule:
|
||||
# run this Action every 14 days
|
||||
- cron: '0 * */14 * *'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
lighthouseci:
|
||||
name: Lighthouse CI
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-18.04
|
||||
services:
|
||||
mongodb:
|
||||
image: mongo:3.6.19
|
||||
ports:
|
||||
- 27017:27017
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [12.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
name: Checkout source files
|
||||
- uses: actions/setup-node@v1
|
||||
name: Setup Node
|
||||
- name: Set environment variables
|
||||
run: cp sample.env .env
|
||||
- name: Install all the dependencies
|
||||
run: npm install && npm install -g @lhci/cli@0.4.x && cd client && npm install && cd ../
|
||||
- name: Start MongoDB
|
||||
uses: supercharge/mongodb-github-action@1.3.0
|
||||
- name: Checkout Source Files
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
mongodb-version: 3.6
|
||||
- name: Seed sample data
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: Set Environment variables
|
||||
run: cp sample.env .env
|
||||
|
||||
- name: Install Dependencies
|
||||
run: |
|
||||
npm install -g @lhci/cli@0.4
|
||||
npm ci
|
||||
npm run ensure-env
|
||||
|
||||
- name: Seed Database
|
||||
run: npm run seed
|
||||
- name: Build the production website and server
|
||||
|
||||
- name: Build Packages
|
||||
run: npm run build
|
||||
- name: Run LightHouse CI
|
||||
|
||||
- name: Run Lighthouse CI
|
||||
run: lhci autorun
|
||||
|
15
.github/workflows/node.js-tests.yml
vendored
15
.github/workflows/node.js-tests.yml
vendored
@ -1,9 +1,6 @@
|
||||
name: Node.js CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- production-**
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
@ -26,14 +23,17 @@ jobs:
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: Set Environment variables
|
||||
run: cp sample.env .env
|
||||
|
||||
- name: Lint Source Files
|
||||
run: |
|
||||
npm ci
|
||||
npm run ensure-env --if-present
|
||||
npm run lint --if-present
|
||||
|
||||
build:
|
||||
name: Check Builds and Run Integration Tests
|
||||
test:
|
||||
name: Test
|
||||
needs: lint
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
@ -58,8 +58,5 @@ jobs:
|
||||
npm ci
|
||||
npm run ensure-env --if-present
|
||||
|
||||
- name: Build Packages
|
||||
run: npm run build --if-present
|
||||
|
||||
- name: Run Tests
|
||||
run: npm test
|
||||
|
Reference in New Issue
Block a user