Skip to content

chore(deps-dev): bump braces from 3.0.2 to 3.0.3 #46

chore(deps-dev): bump braces from 3.0.2 to 3.0.3

chore(deps-dev): bump braces from 3.0.2 to 3.0.3 #46

Workflow file for this run

name: Build
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Load cached modules
id: cached-modules
uses: actions/cache@v2
with:
path: node_modules
key: node_modules-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
if: steps.cached-modules.outputs.cache-hit != 'true'
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build