Skip to content

chore(deps-dev): Bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn group across 1 directory #89

chore(deps-dev): Bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn group across 1 directory

chore(deps-dev): Bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn group across 1 directory #89

Workflow file for this run

# .github/workflows/test.yml
name: Test
# any tag or branch name
on:
push:
branches: ["*"]
tags: ["*"]
pull_request:
branches: ["*"]
jobs:
test:
runs-on: ubuntu-latest
container: node:18
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: Lint and Test
run: |
export CI=TRUE
npm run lint:ci
npm test --coverage