Skip to content

test

test #277

Workflow file for this run

on: [push]
name: test
jobs:
no-secrets:
container: debian:trixie
runs-on: [self-hosted, Linux, X64]
steps:
- name: test
env:
INPUT_TOKEN: ${{ github.token }}
run: |
apt-get -qqy --update install git nodejs npm >/dev/null 2>&1
pushd /tmp
git clone https://github.com/actions/checkout
cd checkout
npm ci
npm run build
node dist/index.js
popd
ls