code-server/.github/workflows/scripts.yml

28 lines
515 B
YAML
Raw Normal View History

2021-07-13 17:22:00 +00:00
name: Script unit tests
on:
push:
branches:
- main
paths:
- "installer.sh"
pull_request:
branches:
- main
jobs:
test:
name: Run script unit tests
runs-on: ubuntu-latest
# This runs on Alpine to make sure we're testing with actual sh.
container: "alpine:3.14"
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Install bats
run: apk add bats
- name: Run script unit tests
run: ./ci/dev/test-scripts.sh