chore(deps)!: upgrade consola to v3 and minimum node version (#128) #123
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: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
cache: yarn | |
- run: yarn install | |
- run: yarn prepack | |
- run: yarn lint | |
- run: npx node ./node_modules/.bin/mocha ./test/*.test.* |