Skip to content

Bump the npm_and_yarn group across 1 directory with 25 updates #93

Bump the npm_and_yarn group across 1 directory with 25 updates

Bump the npm_and_yarn group across 1 directory with 25 updates #93

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
pull_request:
jobs:
build_test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies, Build, and Test
run: |
npm ci
npm run build --if-present
npm test -- --watchAll=false
env:
CI: ""