Skip to content

refactor(PublicationsView.tsx): reorganize sorting functions and add … #212

refactor(PublicationsView.tsx): reorganize sorting functions and add …

refactor(PublicationsView.tsx): reorganize sorting functions and add … #212

Workflow file for this run

name: continuous integration
on:
push:
branches:
- develop
jobs:
test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: set up node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: check out code
uses: actions/checkout@v4
- name: install
run: yarn install --ignore-engines
- name: unit tests
run: yarn coverage
- name: upload test coverage to codecov
uses: codecov/codecov-action@v3
call-frontpage-docker-build:
needs: test
uses: dictyBase/workflows/.github/workflows/docker-build-push-mode.yaml@develop
secrets: inherit
with:
repository: ${{ github.repository }}
ref: ${{ github.ref_name }}
dockerfile: "docker/Dockerfile.frontpage"
dockerrepo: "dictybase/dicty-frontpage"
call-dsc-docker-build:
needs: test
uses: dictyBase/workflows/.github/workflows/docker-build-push-mode.yaml@develop
secrets: inherit
with:
repository: ${{ github.repository }}
ref: ${{ github.ref_name }}
dockerfile: "docker/Dockerfile.stock-center"
dockerrepo: "dictybase/stock-center"
call-publication-docker-build:
needs: test
uses: dictyBase/workflows/.github/workflows/docker-build-push-mode.yaml@develop
secrets: inherit
with:
repository: ${{ github.repository }}
ref: ${{ github.ref_name }}
dockerfile: "docker/Dockerfile.publication"
dockerrepo: "dictybase/publication"