0.44.3 #64
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 | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16.x | |
- name: install shellspec | |
run: curl -sfSL https://git.io/shellspec | sh -s 0.28.1 --yes | |
- run: which shellspec | |
- run: npm install | |
- run: npm run standard | |
- run: npm test |