Skip to content

Commit

Permalink
Merge pull request #94 from zsk-poznan/fix/subs-date
Browse files Browse the repository at this point in the history
Fix/subs date
  • Loading branch information
latachz authored Mar 15, 2023
2 parents a289e89 + f9baf25 commit 50a4814
Show file tree
Hide file tree
Showing 6 changed files with 18,357 additions and 2,599 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Set up Docker Buildx
id: buildx
Expand Down
25 changes: 11 additions & 14 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,16 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x]
node-version: [16.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
cd frontend
npm ci
npm run build --if-present
npm test
env:
CI: true
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: |
cd frontend
npm ci
npm run build --if-present
npm test
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:10-alpine AS builder
FROM node:16-alpine AS builder

WORKDIR /app
COPY package*.json ./
Expand Down
Loading

0 comments on commit 50a4814

Please sign in to comment.