Skip to content

Commit a24f4db

Browse files
committed
Fjernet husky test-hook, lagt til build-and-test-action, bumpet til node 18
1 parent a2adf91 commit a24f4db

File tree

7 files changed

+37
-12
lines changed

7 files changed

+37
-12
lines changed

.github/workflows/build-and-test.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build and test
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout repo
11+
uses: actions/checkout@v3
12+
- name: Setup node.js
13+
uses: actions/setup-node@v3
14+
with:
15+
node-version: '18'
16+
registry-url: 'https://npm.pkg.github.com'
17+
cache: 'npm'
18+
- name: Install dependencies
19+
run: npm ci
20+
env:
21+
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
22+
- name: Build application
23+
run: npm run build
24+
- name: Run tests
25+
run: npm test

.github/workflows/build-image.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- name: Setup node.js
6969
uses: actions/setup-node@v3
7070
with:
71-
node-version: '16.15.0'
71+
node-version: '18'
7272
registry-url: 'https://npm.pkg.github.com'
7373
cache: 'npm'
7474
- name: Set app environmment

.husky/pre-push

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env sh
22
. "$(dirname -- "$0")/_/husky.sh"
33

4-
npm run typeCheck && npm run lint && npm test
4+
npm run typeCheck && npm run lint

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16-bullseye-slim
1+
FROM node:18-bullseye-slim
22

33
WORKDIR /app
44

failover/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN npm run build
2424
RUN rm -f .sentryclirc
2525

2626
# Multistage build to avoid leaking secrets to the final image
27-
FROM node:16-bullseye-slim
27+
FROM node:18-bullseye-slim
2828

2929
WORKDIR /app
3030

package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"@types/express": "4.17.14",
7373
"@types/jest": "29.2.5",
7474
"@types/mock-fs": "4.13.1",
75-
"@types/node": "16.11.44",
75+
"@types/node": "18.14.0",
7676
"@types/node-fetch": "2.6.2",
7777
"@types/on-headers": "1.0.0",
7878
"@types/react": "18.0.26",

0 commit comments

Comments
 (0)