Compare commits

...

2 Commits

Author SHA1 Message Date
Aravinth Manivannan a16d903d5a
feat: CI: use pre-built base img
ci/woodpecker/push/woodpecker Pipeline was successful Details
2024-01-10 02:25:29 +05:30
Aravinth Manivannan 6fb3b1571b
feat: build CI base img to speedup exec 2024-01-10 02:25:25 +05:30
2 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,6 @@
steps:
test:
image: node:20.10.0
image: realaravinth/forgejo-frontend-integration-base # ./Dockerfile
environment:
- INSTANCE_URL=http://forgejo
commands:

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM node:20.10.0
COPY ./package.json .
COPY ./package-lock.json .
RUN npm ci
RUN npx playwright install --with-deps