Skip to content

adjust .sh file

adjust .sh file #8

Workflow file for this run

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
- run: |
git clone https://github.com/shellspec/shellspec.git shellspec
cd shellspec && sudo make install
sudo cp shellspec /usr/bin/shellspec
cd ..
- run: npm install
- run: npm run standard
- run: npm run test