Skip to content

#678@patch: Assign of window.location.href. #373

#678@patch: Assign of window.location.href.

#678@patch: Assign of window.location.href. #373

Workflow file for this run

name: Pull request
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-${{ matrix.node-version }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('./package-lock.json') }}
- run: npm ci --ignore-scripts
- run: npm run bootstrap-ci
- run: npm run validate-commit-messages
- run: npm run compile
- run: npm run lint
- run: npm run test