2022-12-05 15:49:22 +01:00
|
|
|
name: Run npm version and push tags
|
2022-12-05 15:46:02 +01:00
|
|
|
|
2022-12-05 16:01:40 +01:00
|
|
|
|
2022-12-05 16:16:18 +01:00
|
|
|
concurrency:
|
2022-12-05 16:04:49 +01:00
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
2022-12-05 16:01:40 +01:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-12-05 15:46:02 +01:00
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
2022-12-05 16:16:18 +01:00
|
|
|
version:
|
2022-12-05 15:49:22 +01:00
|
|
|
description: What version would you like to use?
|
2022-12-05 15:46:02 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2022-12-05 16:16:18 +01:00
|
|
|
|
2022-12-05 15:59:13 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node-version: [14.x]
|
2022-12-05 15:46:02 +01:00
|
|
|
|
2022-12-05 16:16:18 +01:00
|
|
|
services:
|
|
|
|
# Label used to access the service container
|
|
|
|
postgres:
|
|
|
|
# Docker Hub image
|
|
|
|
image: postgres
|
|
|
|
# Provide the password for postgres
|
|
|
|
env:
|
|
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
# Set health checks to wait until postgres has started
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
options: >-
|
|
|
|
--health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
|
|
|
|
2022-12-05 15:46:02 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-12-06 08:29:34 +01:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.GH_PUSH_TOKEN }}
|
2022-12-05 16:32:10 +01:00
|
|
|
- name: setup git config
|
|
|
|
run: |
|
|
|
|
git config user.name "GitHub Actions Bot"
|
|
|
|
git config user.email "<>"
|
2022-12-05 15:59:13 +01:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
cache: 'yarn'
|
|
|
|
- run: yarn install --frozen-lockfile --ignore-scripts
|
2022-12-05 15:46:02 +01:00
|
|
|
- name: npm version
|
|
|
|
run: |
|
2022-12-05 15:51:20 +01:00
|
|
|
npm version ${{ github.event.inputs.version }}
|
2022-12-06 09:46:41 +01:00
|
|
|
git push origin main
|
|
|
|
git push --tags
|
2022-12-05 16:16:18 +01:00
|
|
|
env:
|
|
|
|
CI: true
|
|
|
|
TEST_DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres
|
|
|
|
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres
|
|
|
|
NODE_ENV: test
|
|
|
|
PORT: 4243
|
|
|
|
|