Skip to content

chore(deps): update dependency @types/node to v20.17.4 #5184

chore(deps): update dependency @types/node to v20.17.4

chore(deps): update dependency @types/node to v20.17.4 #5184

Workflow file for this run

name: Pipeline
on:
pull_request:
push:
branches:
- master
tags:
- '*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Read .nvmrc
run: echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_OUTPUT
id: nvm
- name: Use Node.js (.nvmrc)
uses: actions/setup-node@v4
with:
node-version: "${{ steps.nvm.outputs.NVMRC }}"
cache: yarn
- name: yarn install
run: yarn
- name: Lint
run: yarn lint
- name: Unit Test
run: yarn test
- name: Integration Test
run: yarn test:integration
test-build:
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/master'
steps:
- uses: actions/checkout@v4
- name: Detect Dockerfile change
id: changed-dockerfile
uses: tj-actions/changed-files@v44
with:
files: |
Dockerfile
- name: Build test
if: steps.changed-dockerfile.outputs.any_changed == 'true'
uses: docker/build-push-action@v5
with:
load: true
tags: |
ghcr.io/elifesciences/enhanced-preprints:test
ghcr.io/elifesciences/enhanced-preprints-server:test
build-and-push:
needs: [test]
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v4
- name: Get current date
id: date
run: echo "date=$(date --utc +%Y%m%d.%H%M)" >> $GITHUB_OUTPUT
- name: Get sha with 8 chars long
id: commit_sha
run: echo "commit_sha=${GITHUB_SHA:0:8}" >> $GITHUB_OUTPUT
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
target: prod
push: true
platforms: linux/amd64,linux/arm64
tags: |
ghcr.io/elifesciences/enhanced-preprints:latest
ghcr.io/elifesciences/enhanced-preprints-server:latest
ghcr.io/elifesciences/enhanced-preprints:master-${{ steps.commit_sha.outputs.commit_sha }}-${{ steps.date.outputs.date }}
ghcr.io/elifesciences/enhanced-preprints-server:master-${{ steps.commit_sha.outputs.commit_sha }}-${{ steps.date.outputs.date }}