Skip to content

feat(utils): one trust can be disabled with local storage key onetrus… #141

feat(utils): one trust can be disabled with local storage key onetrus…

feat(utils): one trust can be disabled with local storage key onetrus… #141

Workflow file for this run

name: Continuous
on: [push]
jobs:
BuildAndTest:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- name: Restore lerna
uses: actions/cache@v2
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Update npm registry
run: npm run update:registry
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Format
run: npm run format:check
- name: Lint
run: npm run lint:check
- name: Test
run: npm run test