fix(deps): update dependency react-ga to v3 #2077
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continous Integration | |
# This workflow is triggered on pushes to the repository. | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Test | |
strategy: | |
matrix: | |
os: | |
- windows-latest | |
- ubuntu-latest | |
- macos-latest | |
node-version: [12] | |
include: | |
- os: ubuntu-latest | |
node-version: 10 | |
- os: ubuntu-latest | |
node-version: 14 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Update NPM | |
run: npm i -g npm | |
- name: Bootstrap project | |
run: npm ci --ignore-scripts | |
env: | |
CI: true | |
- name: Rebuild Sass | |
run: npm rebuild node-sass | |
- name: Build project | |
run: npm run build | |
- name: Run tests | |
run: npm run test | |
code-lint: | |
name: Code Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 12 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
- name: Update NPM | |
run: npm i -g npm | |
- name: Bootstrap project | |
run: npm ci --ignore-scripts | |
env: | |
CI: true | |
- name: Rebuild Sass | |
run: npm rebuild node-sass | |
- name: Build project | |
run: npm run build | |
- name: Check linting | |
run: npm run lint | |
commit-lint: | |
name: Commit Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Un-shallow git tree | |
run: git fetch --prune --unshallow | |
- name: Use Node.js 12 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
- name: Update NPM | |
run: npm i -g npm | |
- name: Bootstrap project | |
run: npm ci --ignore-scripts | |
env: | |
CI: true | |
- name: Check linting | |
run: npx commitlint --from origin/master --to HEAD --verbose |