Bump send from 0.17.1 to 0.19.0 in /packages/extensions/serve-static #89
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Sustain CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [10.x, 12.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: install and build common package | |
run: | | |
cd packages/common | |
npm i | |
npm run build | |
npm run copy:assets | |
- name: install and build core package | |
run: | | |
cd packages/core | |
npm i | |
npm run build | |
npm run copy:assets | |
- name: install and build http package | |
run: | | |
cd packages/http | |
npm i | |
npm run build | |
- name: install and build swagger package | |
run: | | |
cd packages/swagger | |
npm i | |
npm run build | |
env: | |
CI: true | |
- uses: codecov/codecov-action@v1 |