Skip to content

Commit

Permalink
⭐ init
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniil-Oberlev committed Aug 12, 2024
1 parent de28165 commit 8fd5206
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 15 deletions.
6 changes: 0 additions & 6 deletions .github/dependabot.yml

This file was deleted.

22 changes: 13 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ on:
branches:
- main
- dev
schedule:
- cron: '0 0 * * 1'

jobs:
build:
Expand All @@ -25,6 +23,14 @@ jobs:
with:
node-version: '18'

- name: Cache node modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm install

Expand All @@ -34,15 +40,13 @@ jobs:
- name: Run Tests
run: npm test

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

- name: Build Project
run: npm run build

clean_cache:
runs-on: ubuntu-latest
if: always()

steps:
- name: Clean npm cache
run: npm cache clean --force

0 comments on commit 8fd5206

Please sign in to comment.