Skip to content

try moving it

try moving it #5

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/shellspec /usr/bin/shellspec
- run: npm install
- run: npm run standard
- run: npm run test