Skip to content

Bump semver from 5.7.1 to 5.7.2 #2263

Bump semver from 5.7.1 to 5.7.2

Bump semver from 5.7.1 to 5.7.2 #2263

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Using Node 16
uses: actions/setup-node@v3
with:
node-version: 16
- name: Update npm version to latest
run: npm install -g npm@latest # stop showing warnings about the lockfile
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test
env:
STACK_API_KEYS: ${{ secrets.STACK_API_KEYS }}
HEROKU_API_TOKEN: ${{ secrets.HEROKU_API_TOKEN }}
HEROKU_APP_NAME: ${{ secrets.HEROKU_APP_NAME }}
- name: "Run build"
run: npm run build