Skip to content

Commit

Permalink
Merge pull request #18 from dhershman1/development
Browse files Browse the repository at this point in the history
v4.1.1 Development
  • Loading branch information
dhershman1 authored Oct 15, 2024
2 parents 20689a1 + a1916cb commit 8ddf713
Show file tree
Hide file tree
Showing 15 changed files with 944 additions and 363 deletions.
9 changes: 9 additions & 0 deletions .c8rc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"exclude": [
"src/_internals",
"tests"
],
"reporter": [
"lcov"
]
}
128 changes: 68 additions & 60 deletions .github/workflows/phone-fns.yml
Original file line number Diff line number Diff line change
@@ -1,60 +1,68 @@
name: Phone-Fns CI

on:
push:
branches: [ master, development ]
pull_request:
branches: [ master ]

jobs:

test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Check node_module Cache
id: node-module-cache
uses: actions/cache@v2
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.node-module-cache.outputs.cache-hit != 'true'
run: npm ci
- name: Test
run: npm test
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Check node_module Cache
id: node-module-cache
uses: actions/cache@v2
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.node-module-cache.outputs.cache-hit != 'true'
run: npm ci
- name: Lint
run: npm run lint
name: Phone-Fns CI

on:
push:
branches: [ master, development ]
pull_request:
branches: [ master ]

jobs:

test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Check node_module Cache
id: node-module-cache
uses: actions/cache@v4
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.node-module-cache.outputs.cache-hit != 'true'
run: npm ci
- name: Test
run: npm run test:cov
- name: Run Report
run: npm run report
- name: Check Coverage
run: npm run coverage
- name: Upload Coverage
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Check node_module Cache
id: node-module-cache
uses: actions/cache@v4
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.node-module-cache.outputs.cache-hit != 'true'
run: npm ci
- name: Lint
run: npm run lint
Loading

0 comments on commit 8ddf713

Please sign in to comment.