chore(master): release typescript 2.6.0 #154
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Currently this does not contain any tests, only a license check | |
# Once we add tests, we should add a step here to run them | |
name: Run CLI Tests | |
on: | |
push: | |
paths: | |
- openapi-generator/cli_lang.yaml | |
- clients/cli/cmd/internal/* | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.21.9' | |
- name: Generate CLI | |
env: | |
GOPRIVATE: github.com/phrase/phrase-go | |
run: | | |
npm install | |
npm run generate.cli | |
- name: License check | |
uses: phrase/actions/lawa-ci@v1 | |
with: | |
github-token: ${{ secrets.GH_LAWA_ACCESS_TOKEN }} | |
decisions-file: .license-decisions.yml | |
working-directory: clients/cli | |
package-managers: gomodules |