Skip to content
This repository has been archived by the owner on Jan 24, 2025. It is now read-only.

chore: bump setup-kalix-action (#12) #28

chore: bump setup-kalix-action (#12)

chore: bump setup-kalix-action (#12) #28

name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
env:
PERSON_VERSION: $(node -p "require('./package').version")
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
- run: docker build . -t beritou/person:${{ env.PERSON_VERSION }}
env:
CI: true