Skip to content

Commit

Permalink
fix(bundlers-tests): remove node 16 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
m0ksem committed Nov 27, 2023
1 parent 7a6f4df commit c69e6d6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions packages/bundlers-tests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ services:
image: "local-packages-lts:latest"
profiles:
- "local-packages-lts"
local-packages-16:
local-packages-18:
build:
context: ./../
dockerfile: ./bundlers-tests/docker-tests/packages-16.Dockerfile
dockerfile: ./bundlers-tests/docker-tests/packages-18.Dockerfile
no_cache: true
image: "local-packages-16:latest"
image: "local-packages-18:latest"
profiles:
- "local-packages-16"
- "local-packages-18"
vite_test:
build:
context: .
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16-alpine as build
FROM node:18-alpine as build

WORKDIR /

Expand Down
2 changes: 1 addition & 1 deletion packages/bundlers-tests/docker-tests/vite.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM local-packages-16:latest as build
FROM local-packages-18:latest as build

RUN yarn create vite vite-app --template vue

Expand Down
6 changes: 3 additions & 3 deletions packages/bundlers-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"version": "0.0.0",
"scripts": {
"build:local-packages-16": "docker image prune -f && docker container prune -f && docker-compose --profile local-packages-16 build --no-cache",
"build:local-packages-18": "docker image prune -f && docker container prune -f && docker-compose --profile local-packages-18 build --no-cache",
"build:local-packages-lts": "docker image prune -f && docker container prune -f && docker-compose --profile local-packages-lts build --no-cache",
"build:test-page": "tsx ./kitchensink-builder/create-test-page.ts",
"run:vite": "docker-compose --profile run-vite up",
Expand All @@ -17,7 +17,7 @@
"test:webpack": "docker-compose --profile webpack up --build --exit-code-from cypress_webpack",
"test:nuxt-ssr": "docker-compose --profile nuxt-ssr up --build --exit-code-from cypress_nuxt_ssr",
"test:nuxt-spa": "docker-compose --profile nuxt-spa up --build --exit-code-from cypress_nuxt_spa",
"test": "yarn build:test-page && yarn build:local-packages-16 && yarn build:local-packages-lts && yarn test:vite && yarn test:nuxt && yarn test:16",
"test:16": "yarn build:local-packages-16 && yarn test:vite"
"test": "yarn build:test-page && yarn build:local-packages-18 && yarn build:local-packages-lts && yarn test:vite && yarn test:nuxt && yarn test:18",
"test:18": "yarn build:local-packages-18 && yarn test:vite"
}
}

0 comments on commit c69e6d6

Please sign in to comment.