diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3e6172e5..bd33f7a5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '18' cache: 'npm' - run: npm ci - run: npm run lint diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index def59874..3945cdc8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest services: mongodb: - image: mongo:5.0.5 + image: mongo:5.0.13 ports: - 27017:27017 if: "!contains(github.event.head_commit.message, '[skip tests]')" @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '18' cache: 'npm' - run: npm ci - run: npm run test -- --watch=false --progress=false --browsers=ChromeHeadless diff --git a/Dockerfile b/Dockerfile index c4bc6b32..8eddad7e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:16-alpine +FROM node:18-alpine WORKDIR /usr/src/app COPY package*.json ./