Skip to content

chore(deps-dev): bump follow-redirects from 1.15.3 to 1.15.6 #46

chore(deps-dev): bump follow-redirects from 1.15.3 to 1.15.6

chore(deps-dev): bump follow-redirects from 1.15.3 to 1.15.6 #46

Workflow file for this run

name: main
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
permissions:
actions: read
jobs:
build-unix:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest']
node-version: [18.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: Install dependencies
run: |
npm ci --ignore-scripts --force
- name: Test
run: npm test
- name: Codecov
uses: codecov/codecov-action@v3
- name: Send coverage report with Code Climate
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageLocations: ${{ github.workspace }}/jest-coverage/lcov.info:lcov