Bump semver from 5.7.1 to 5.7.2 #3
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: Run Tests | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
test: | ||
# https://github.com/actions/runner-images | ||
runs: | ||
Check failure on line 12 in .github/workflows/config.yml GitHub Actions / Run TestsInvalid workflow file
|
||
using: docker | ||
image: node:16 | ||
steps: | ||
# https://github.com/actions/checkout | ||
- uses: actions/checkout@v3 | ||
- run: npm ci | ||
- run: npm run build | ||
- run: npm run test:quick |