Skip to content

Bump express from 4.17.1 to 4.19.2 #144

Bump express from 4.17.1 to 4.19.2

Bump express from 4.17.1 to 4.19.2 #144

Workflow file for this run

name: Push
on: [push]
jobs:
on_push:
name: Test, build and publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: 12.x
- run: npm install
- run: npm run test:ci
- name: Build
if: github.ref == 'refs/heads/publish'
run: npm run build
- name: Publish
if: github.ref == 'refs/heads/publish'
uses: mikeal/merge-release@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}