Skip to content

Next step developments #30

Next step developments

Next step developments #30

Workflow file for this run

name: Test and build
on:
push:
branches:
- main
tags:
- 'v*.*.*'
pull_request:
branches:
- main
env:
REGISTRY: ghcr.io
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 22.x ]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run test --if-present
# Optional linting step
# - run: npm run lint --if-present
publish-main-image:
runs-on: ubuntu-latest
needs: tests
if: github.ref == 'refs/heads/main'
strategy:
matrix:
node-version: [ 22.x ]
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and publish staging docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ghcr.io/norkator/poker-pocket-ts-backend:latest
build-args: NODE_ENV=staging
file: Dockerfile