This commit is contained in:
Will Hunt 2024-09-19 14:08:37 +01:00
parent c501f3d290
commit 07ee4f580f
2 changed files with 5 additions and 5 deletions

View File

@ -20,7 +20,7 @@ jobs:
- name: Specifically use node 18 like in the readme. - name: Specifically use node 18 like in the readme.
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: '18' node-version: '20'
- run: yarn install - run: yarn install
- run: yarn build - run: yarn build
- run: yarn lint - run: yarn lint
@ -32,7 +32,7 @@ jobs:
- name: Specifically use node 18 like in the readme. - name: Specifically use node 18 like in the readme.
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: '18' node-version: '20'
- run: yarn install - run: yarn install
- run: yarn test - run: yarn test
integration: integration:
@ -43,7 +43,7 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: actions/setup-node@v3 - uses: actions/setup-node@v3
with: with:
node-version: '18' node-version: '20'
- name: Fetch and build mx-tester (cached across runs) - name: Fetch and build mx-tester (cached across runs)
uses: baptiste0928/cargo-install@v1 uses: baptiste0928/cargo-install@v1
with: with:
@ -65,7 +65,7 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: actions/setup-node@v3 - uses: actions/setup-node@v3
with: with:
node-version: '18' node-version: '20'
- name: Fetch and build mx-tester (cached across runs) - name: Fetch and build mx-tester (cached across runs)
uses: baptiste0928/cargo-install@v1 uses: baptiste0928/cargo-install@v1
with: with:

View File

@ -1,5 +1,5 @@
# We can't use alpine anymore because crypto has rust deps. # We can't use alpine anymore because crypto has rust deps.
FROM node:18-slim FROM node:20-slim
COPY . /tmp/src COPY . /tmp/src
RUN cd /tmp/src \ RUN cd /tmp/src \
&& yarn install \ && yarn install \