Skip to content

build(deps-dev): bump @testing-library/jest-dom from 6.0.0 to 6.0.1 #2302

build(deps-dev): bump @testing-library/jest-dom from 6.0.0 to 6.0.1

build(deps-dev): bump @testing-library/jest-dom from 6.0.0 to 6.0.1 #2302

Workflow file for this run

name: Test successful build of react-geo
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources 🔰
uses: actions/checkout@v2
- name: Setup Node.js 16
uses: actions/setup-node@v1
with:
node-version: 16
- name: Cache Node.js modules 💾
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies ⏬
run: npm ci
- name: Build artifacts 🏗️
run: npm run build
- name: Publish to coveralls ⭐
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}