9 lines
128 B
Bash
9 lines
128 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
pushd /github/workspace
|
||
|
raco pkg install --auto --batch sass/
|
||
|
raco test -j 4 sass/
|
||
|
popd
|