Skip to content

New version 1.0.18

New version 1.0.18 #19

Workflow file for this run

name: Deploy
on:
workflow_dispatch:
push:
tags: ["*"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3 #Setup Node
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: |
npm ci
- name: Lint
run: |
npm run lint
- name: Test
run: |
npm test
- uses: akhileshns/heroku-deploy@v3.12.14 # This is the action
with:
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
heroku_app_name: "mappable-test-server"
heroku_email: ${{secrets.HEROKU_EMAIL}}
usedocker: true