Skip to content

Bump to use new CLI 2.0.32 (#10) #24

Bump to use new CLI 2.0.32 (#10)

Bump to use new CLI 2.0.32 (#10) #24

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