Fix release versioning #502
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Quality | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
branches: | |
- "**" | |
- "!main" | |
permissions: write-all | |
env: | |
NODE_VERSION: "22.x" | |
DB_USERNAME: postgres | |
DB_PASSWORD: postgres | |
DB_DATABASE: postgres | |
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres?schema=public | |
jobs: | |
cleanup: | |
name: "cleanup" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup node | |
run: | | |
npm install @octokit/rest | |
- name: Remove outdated versions | |
uses: actions/github-script@v7 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BASE_IMAGE_NAME: ${{ vars.BASE_IMAGE_NAME }} | |
CURRENT_VERSION: ${{ needs.determine_version.outputs.version }} | |
TAGS: ${{ steps.get_tags.outputs.tags }} | |
with: | |
script: | | |
const { findOutdatedVersions, makeVersionTag } = require('./.github/scripts/find-version.js'); | |
const { removePackageVersions } = require('./.github/scripts/remove-packages.js'); | |
await removePackageVersions(`${process.env.BASE_IMAGE_NAME}-api`, [{ | |
major: 1, | |
minor: 7, | |
patch: 0, | |
preRelease: 5, | |
}]); | |
await removePackageVersions(`${process.env.BASE_IMAGE_NAME}-ui`, [{ | |
major: 1, | |
minor: 7, | |
patch: 0, | |
preRelease: 5, | |
}]); | |
dependency-review: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Review Dependencies | |
uses: actions/dependency-review-action@v4 | |
install: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Get npm cache directory | |
id: npm-cache-dir | |
run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT} | |
- name: Cache npm | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.npm-cache-dir.outputs.dir }} | |
key: "${{ runner.os }}-npm-${{ env.NODE_VERSION }}-${{ hashFiles('package-lock.json') }}" | |
restore-keys: | | |
${{ runner.os }}-npm- | |
- name: Cache node modules | |
uses: actions/cache@v4 | |
with: | |
path: ./node_modules | |
key: "${{ runner.os }}-node_modules-${{ env.NODE_VERSION }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('**/schema.prisma') }}" | |
restore-keys: | | |
${{ runner.os }}-node_modules- | |
- name: Cache e2e node modules | |
uses: actions/cache@v4 | |
with: | |
path: ./e2e/node_modules | |
key: "${{ runner.os }}-node_modules_e2e-${{ env.NODE_VERSION }}-${{ hashFiles('./e2e/package-lock.json') }}" | |
restore-keys: | | |
${{ runner.os }}-node_modules_e2e- | |
- name: Install node dependencies | |
run: npm install | |
- name: Generate prisma types | |
run: npm run prisma -- generate | |
- name: Install e2e node dependencies | |
run: cd e2e && npm ci | |
test: | |
runs-on: ubuntu-latest | |
needs: install | |
services: | |
db: | |
image: postgis/postgis | |
ports: | |
- "5432:5432" | |
env: | |
POSTGRES_USER: ${{ env.DB_USERNAME }} | |
POSTGRES_PASSWORD: ${{ env.DB_PASSWORD }} | |
POSTGRES_DB: ${{ env.DB_DATABASE }} | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
elasticsearch: | |
image: docker.elastic.co/elasticsearch/elasticsearch:8.12.1 | |
ports: | |
- "9200:9200" | |
env: | |
ES_JAVA_OPTS: -Xms512m -Xmx512m | |
xpack.security.enabled: false | |
discovery.type: single-node | |
cluster.routing.allocation.disk.threshold_enabled: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Restore cached node modules | |
uses: actions/cache/restore@v4 | |
with: | |
path: ./node_modules | |
key: "${{ runner.os }}-node_modules-${{ env.NODE_VERSION }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('**/schema.prisma') }}" | |
- name: Migrate database | |
run: npm run prisma -- migrate deploy | |
- name: Run tests | |
run: npm run test | |
lint: | |
runs-on: ubuntu-latest | |
needs: install | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Restore cached node modules | |
uses: actions/cache/restore@v4 | |
with: | |
path: ./node_modules | |
key: "${{ runner.os }}-node_modules-${{ env.NODE_VERSION }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('**/schema.prisma') }}" | |
- name: Run lint | |
run: npm run lint | |
- name: Run prettier | |
run: npx prettier --check . | |
# It would be cleaner and probably more performant to replace this build step | |
# with either a non-emitting build or a simple type check. | |
# We only have `build` available for now, | |
# since the project is currently split across a multitude of small packages, | |
# all of which have to specify their own commands. | |
# (Daniel von Atzigen, 2024-04-12) | |
build: | |
runs-on: ubuntu-latest | |
needs: | |
- test | |
- lint | |
- dependency-review | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Restore cached node modules | |
uses: actions/cache/restore@v4 | |
with: | |
path: ./node_modules | |
key: "${{ runner.os }}-node_modules-${{ env.NODE_VERSION }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('**/schema.prisma') }}" | |
- name: Reset nx | |
run: npx nx reset | |
- name: Run build | |
run: npm run build | |
cypress: | |
runs-on: ubuntu-latest | |
needs: | |
- test | |
- lint | |
- dependency-review | |
strategy: | |
# https://github.com/cypress-io/github-action/issues/48 | |
fail-fast: false | |
matrix: | |
# Use 2 parallel instances | |
containers: [1, 2] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Restore cached node modules | |
uses: actions/cache/restore@v4 | |
with: | |
path: ./node_modules | |
key: "${{ runner.os }}-node_modules-${{ env.NODE_VERSION }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('**/schema.prisma') }}" | |
- name: Install dos2unix | |
run: sudo apt-get update && sudo apt-get install -y dos2unix | |
- name: Start services | |
env: | |
DB_USER: ${{ env.DB_USERNAME }} | |
DB_PASSWORD: ${{ env.DB_PASSWORD }} | |
run: | | |
cd development | |
touch .env.ocr | |
dos2unix ./init/elasticsearch/init.sh | |
chmod +x ./init/elasticsearch/init.sh | |
chmod +r ./init/elasticsearch/mappings/swissgeol_asset_asset.json | |
sed -i 's/- \.\/volumes\/elasticsearch\/data:\/usr\/share\/elasticsearch\/data//g' ./docker-compose.yaml | |
docker compose up -d db oidc elasticsearch | |
sleep 120 | |
docker logs $(docker ps --filter "name=elasticsearch" --format "{{.ID}}") | |
- name: Migrate database | |
run: npm run prisma -- migrate deploy | |
- name: Restore cached e2e node modules | |
uses: actions/cache/restore@v4 | |
with: | |
path: ./e2e/node_modules | |
key: "${{ runner.os }}-node_modules_e2e-${{ env.NODE_VERSION }}-${{ hashFiles('./e2e/package-lock.json') }}" | |
- name: Cypress run | |
uses: cypress-io/github-action@v6 | |
with: | |
command: | | |
npx cypress run \ | |
--browser edge \ | |
--record \ | |
--parallel \ | |
--key ${{ secrets.CYPRESS_RECORD_KEY }} \ | |
--ci-build-id ${{ github.repository }}-${{ github.head_ref || github.ref_name }}-${{ github.sha }} | |
build: npm run build | |
start: npm start | |
wait-on: "http://localhost:4200" | |
wait-on-timeout: 120 | |
working-directory: ./e2e | |
env: | |
VITE_APP_VERSION: 0.0.99+dev | |
TZ: Europe/Zurich | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Stop services | |
run: | | |
cd development | |
docker compose down |