22 lines
386 B
YAML
22 lines
386 B
YAML
name: Self Test
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
test:
|
|
# container: offline-twitter/go
|
|
container: node
|
|
steps:
|
|
- name: env
|
|
run: |
|
|
env
|
|
|
|
# - name: checkout
|
|
# uses: https://${{ secrets.GITHUB_TOKEN }}:@git.offline-twitter.com/wispem/shellcheckout@${{ github.ref }}
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: wc -l
|
|
run: wc -l action.yml
|
|
|