Bump minimatch from 3.1.2 to 3.1.5 #380
This file contains hidden or 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 and Test | |
| on: | |
| push: | |
| branches: [ next, master ] | |
| pull_request: | |
| branches: [ next, master ] | |
| jobs: | |
| # Build the library | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: '16.x' | |
| - run: npm install | |
| - run: npm run build | |
| # Run the test suite | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: '16.x' | |
| - run: npm install | |
| - run: npm run build | |
| - uses: cypress-io/github-action@v2 | |
| with: | |
| install: false | |
| start: npm run test:serve | |
| wait-on: http://localhost:1234 | |
| command: npm run test:cli |