Skip to content

Commit

Permalink
upgrade github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
privapps committed Apr 27, 2024
1 parent de6cfd1 commit c90a108
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v2
Expand All @@ -21,7 +21,7 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: |
npm install -g @angular/cli@13.1.1 && npm ci
npm install -g @angular/cli@16.2.12 && npm ci --legacy-peer-deps
ng build --aot --build-optimizer --configuration production --base-href=/notebook/index.html
cp -R dist/notebook-privapps notebook
cd notebook && sed -i.bak "s|/notebook/index.html|/index.html|g" index.html && rm *.bak
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v2
Expand All @@ -20,7 +20,8 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install -g @angular/cli@13.1.1 && npm ci
- run: npm install -g @angular/cli@16.2.12 && npm ci --legacy-peer-deps

- run: ng build --aot --build-optimizer --configuration production --base-href=/index.html
- uses: actions/checkout@v2
with:
Expand Down
5 changes: 5 additions & 0 deletions src/app/settings/settings.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,9 @@ button.btn.pl-0 {
padding-bottom: 10px;
background-color: #f3f3f3;
text-decoration: none;
}

input[readonly],
textarea[readonly] {
background-color: #efe9e9 !important
}

0 comments on commit c90a108

Please sign in to comment.