Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Country metrics merge #65

Merged
merged 12 commits into from
Oct 1, 2024
Merged
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
node-version: '22.x'
registry-url: 'https://npm.pkg.github.com'
cache: 'npm'
- run: npm ci --ignore-scripts
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ If using `npm` natively rather than in a docker container, then:
To do this on Linux:

1. Create an `.npmrc` file if one doesn't already exist in your home directory (`~/.npmrc`)
2. Place the following line in the file:
2. Place the following lines in the file:

```
@nismod:registry=https://npm.pkg.github.com
//npm.pkg.github.com/:_authToken=TOKENHERE
```

Expand Down
2 changes: 1 addition & 1 deletion containers/Dockerfile-dev
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Single-stage dev setup
FROM node:18
FROM node:22
WORKDIR /app

# install npm packages
Expand Down
2 changes: 1 addition & 1 deletion containers/Dockerfile-prod
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# multistage build of nginx image

# stage 1 of 2
FROM node:18 AS builder
FROM node:22 AS builder
WORKDIR /app

# install npm packages -- do this before copying everything else
Expand Down
Loading
Loading