Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/npm_and_yarn/y18n-4.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
askonev authored Aug 1, 2024
2 parents 73ef1c3 + 48b9eba commit 5106292
Show file tree
Hide file tree
Showing 15 changed files with 13,126 additions and 7,343 deletions.
104 changes: 104 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
version: 2
updates:
- package-ecosystem: docker
directories:
- "/"
- "/docker-build"
schedule:
interval: daily
time: "02:00"
open-pull-requests-limit: 10
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
time: "02:00"
open-pull-requests-limit: 10
ignore:
- dependency-name: "@types/node"
versions:
- 14.14.22
- 14.14.24
- 14.14.25
- 14.14.26
- 14.14.28
- 14.14.30
- 14.14.31
- 14.14.32
- 14.14.33
- 14.14.34
- 14.14.35
- 14.14.36
- 14.14.37
- 14.14.39
- 14.14.41
- 15.0.0
- dependency-name: core-js
versions:
- 3.10.0
- 3.10.1
- 3.10.2
- 3.11.0
- 3.8.3
- 3.9.0
- 3.9.1
- dependency-name: "@angular/cli"
versions:
- 11.1.2
- 11.1.3
- 11.1.4
- 11.2.0
- 11.2.1
- 11.2.10
- 11.2.2
- 11.2.3
- 11.2.4
- 11.2.5
- 11.2.6
- 11.2.7
- 11.2.8
- 11.2.9
- dependency-name: "@angular-devkit/build-angular"
versions:
- 0.1101.2
- 0.1101.3
- 0.1101.4
- 0.1102.0
- 0.1102.1
- 0.1102.10
- 0.1102.2
- 0.1102.3
- 0.1102.4
- 0.1102.5
- 0.1102.6
- 0.1102.7
- 0.1102.8
- 0.1102.9
- dependency-name: uglify-js
versions:
- 3.12.5
- 3.12.6
- 3.12.7
- 3.12.8
- 3.13.0
- 3.13.1
- 3.13.2
- 3.13.3
- dependency-name: y18n
versions:
- 4.0.1
- 4.0.2
- dependency-name: elliptic
versions:
- 6.5.4
- dependency-name: typescript
versions:
- 4.0.5
- 4.0.6
- 4.0.7
- dependency-name: tar
versions:
- 6.1.0
- dependency-name: tslib
versions:
- 2.1.0
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Run Docker Build
run: |
docker run -t $(docker build -q .) bash -c 'ls -la dist'
26 changes: 26 additions & 0 deletions .github/workflows/jasmine.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Karma Jasmine Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
jasmine:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: browser-actions/setup-chrome@v1
with:
chrome-version: stable
install-dependencies: true
install-chromedriver: true
- uses: actions/setup-node@v4
with:
node-version: 16.17.1
- name: Install packages
run: npm install
- name: Run
run: npm run ng test
16 changes: 16 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Linting
on:
- pull_request
jobs:
markdownlint:
name: markdownlint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Check markdown files using `markdownlint`
run: |
npm install -g markdownlint-cli
markdownlint *.md
Loading

0 comments on commit 5106292

Please sign in to comment.