Skip to content

Commit

Permalink
Merge pull request #1 from niscy-eudiw/feature/github_actions
Browse files Browse the repository at this point in the history
GitHub actions
  • Loading branch information
vafeini authored Jul 10, 2023
2 parents 674ebb6 + 00942e5 commit 307dca1
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 10 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI
on:
pull_request:
branches: ['**']
push:
branches: ['**']
tags: [v*]

permissions:
contents: read

jobs:
build-npm:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: npm install
# - name: Run tests
# run: npm run test
- name: Build
run: npm run build





19 changes: 9 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.0",
"@angular/common": "^15.2.0",
"@angular/compiler": "^15.2.0",
"@angular/core": "^15.2.0",
"@angular/forms": "^15.2.0",
"@angular/platform-browser": "^15.2.0",
"@angular/platform-browser-dynamic": "^15.2.0",
"@angular/router": "^15.2.0",
"@angular/animations": "^15.2.9",
"@angular/common": "^15.2.9",
"@angular/compiler": "^15.2.9",
"@angular/core": "^15.2.9",
"@angular/forms": "^15.2.9",
"@angular/platform-browser": "^15.2.9",
"@angular/platform-browser-dynamic": "^15.2.9",
"@angular/router": "^15.2.9",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@types/codemirror": "^5.60.7",
Expand All @@ -40,7 +40,7 @@
"@angular-eslint/schematics": "15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/cli": "~15.2.5",
"@angular/compiler-cli": "^15.2.0",
"@angular/compiler-cli": "^15.2.9",
"@types/jasmine": "~4.3.0",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
Expand All @@ -55,7 +55,6 @@
"karma-jasmine-html-reporter": "~2.0.0",
"karma-sonarqube-reporter": "^1.4.0",
"stylelint": "^15.6.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^33.0.0",
"stylelint-config-standard-scss": "^8.0.0",
"stylelint-order": "^6.0.3",
Expand Down

0 comments on commit 307dca1

Please sign in to comment.