nightrunner_lib 0.4.0

A parser library for making text adventure games
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
on:
  push:
    branches:
      - main
jobs:
  test:
    uses: ./.github/workflows/test.yaml
  deploy_npm:
    needs: test
    uses: ./.github/workflows/deploy_to_npm.yaml
    secrets:
      NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
  deploy_crates:
    needs: test
    uses: ./.github/workflows/deploy_to_crates.yaml
    secrets:
      CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}