Skip to content

docs: Use IG API URLs from Google Cache #2275

docs: Use IG API URLs from Google Cache

docs: Use IG API URLs from Google Cache #2275

name: 'Continuous Integration'
on: [pull_request, push]
jobs:
'Build':
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x]
steps:
- name: 'Checkout repository'
uses: actions/checkout@v4
- name: 'Use Node.js v${{ matrix.node-version }}'
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: 'Install, lint, and test'
run: |
yarn install
yarn lint
yarn test
if: |
contains(github.event.commits[0].message, '[skip ci]') == false &&
contains(github.event.commits[0].message, '[ci skip]') == false
- name: 'Upload coverage reports to Codecov'
uses: codecov/codecov-action@v4.3.0
with:
fail_ci_if_error: false
file: ./coverage/lcov.info
flags: unittests