Bump send and express in /docs #574
Workflow file for this run
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
name: Build Check | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2-beta | |
with: | |
fetch-depth: 1 | |
- name: Installing packages | |
run: | | |
npm install | |
npm --prefix ./prefixer install ./prefixer | |
npm --prefix ./global install ./global | |
- name: Run tests | |
run: npm run test |