Skip to content

feat: support max age #79

feat: support max age

feat: support max age #79

Workflow file for this run

name: 'πŸ’š CI - Compatibility'
on:
push:
branches:
- 'main'
pull_request:
workflow_dispatch:
jobs:
linux:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: false
name: Node.js
steps:
- name: βž• Actions - Checkout
uses: actions/checkout@v4
- name: βž• Actions - Setup Node.js
uses: actions/setup-node@v4
with:
check-latest: true
node-version: lts/*
- name: βž• Cache dependencies
uses: actions/cache@v4
with:
path: ~/.npm
key: npm-linux-${{ hashFiles('package-lock.json') }}
restore-keys: npm-linux-
- name: πŸ“¦ Installing Dependencies
run: npm ci
- name: πŸ§ͺ Checking for Coverage
run: npm run test:coverage
- name: β˜”οΈ Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}