Skip to content

Bump flatted from 3.4.0 to 3.4.2 #147

Bump flatted from 3.4.0 to 3.4.2

Bump flatted from 3.4.0 to 3.4.2 #147

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Test
on:
push:
pull_request:
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
- name: Cache NPM dependencies
uses: actions/cache@v5
with:
path: ~/.npm
key: ${{ runner.OS }}-npm-cache-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-npm-cache-
- name: Install the dependencies
run: npm ci
- name: Test the package
run: npm run coverage
- name: Upload coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: Laragear/webpass