Skip to content

build(deps): bump @metascraper/helpers from 5.38.0 to 5.39.0 #21

build(deps): bump @metascraper/helpers from 5.38.0 to 5.39.0

build(deps): bump @metascraper/helpers from 5.38.0 to 5.39.0 #21

Workflow file for this run

name: pull_request
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
if: github.ref != 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install
run: npm install --no-package-lock
- name: Test
run: npm test
- name: Report
run: mkdir -p coverage && npx c8 report --reporter=text-lcov > coverage/lcov.info
- name: Coverage
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}