16 lines
439 B
YAML
16 lines
439 B
YAML
name: Test
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Get code
|
|
uses: actions/checkout@v3
|
|
# NPM Install is not needed as Custom JS Actions require the node_modules folder commited in the repository
|
|
#- name: NPM Install
|
|
# run: npm ci
|
|
- name: Test Custom JS Action
|
|
uses: https://gitea.coursow.de/Test-Playground/actions-custom-js@master |