Skip to content

Commit

Permalink
build(deps): update deps & base image
Browse files Browse the repository at this point in the history
  • Loading branch information
kirintwn committed Apr 12, 2023
1 parent e08c3cb commit a2ad7a3
Show file tree
Hide file tree
Showing 5 changed files with 3,164 additions and 2,370 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Expand Up @@ -29,7 +29,7 @@ jobs:

test:
name: test
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -39,7 +39,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16.17.0'
node-version: '18.15.0'
- name: Get npm cache directory
id: npm-cache-dir
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,4 +1,4 @@
FROM node:16.17.0-alpine3.16 AS base
FROM node:18.15.0-alpine3.17

FROM base AS deps
WORKDIR /opt/app
Expand Down
4 changes: 3 additions & 1 deletion jest.config.json
@@ -1,7 +1,9 @@
{
"testEnvironment": "node",
"modulePathIgnorePatterns": ["<rootDir>/dist/"],
"preset": "ts-jest",
"transform": {
"^.+\\.(t|j)sx?$": ["@swc-node/jest"]
},
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": ["src/**/*"],
Expand Down

0 comments on commit a2ad7a3

Please sign in to comment.