mirror of
https://github.com/logos-messaging/packages.git
synced 2026-01-02 14:13:05 +00:00
* Add GitHub actions * Workflow typo * Workflow typo * Use GITHUB_TOKEN in build if available
17 lines
343 B
YAML
17 lines
343 B
YAML
on:
|
|
pull_request:
|
|
push:
|
|
|
|
jobs:
|
|
default:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: iffy/install-nim@v3
|
|
with:
|
|
version: stable
|
|
- run: nim c -d:ssl -r package_scanner.nim
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
- run: node ./validate_json.js
|