Added Typespec for container mirror and status #83
Workflow file for this run
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
--- | |
name: Typespec_Validation | |
on: | |
push: | |
branches: | |
- '**' | |
paths : | |
- 'typespec/**' | |
pull_request: | |
types: [opened, reopened, synchronize] | |
paths: | |
- 'typespec/**' | |
permissions: | |
contents: read | |
jobs: | |
typespec_validation: | |
name: validate typespec files | |
runs-on: ubuntu-latest | |
steps: | |
- name : Checkout | |
uses : actions/checkout@v4 | |
- name : Setup Node.js environment | |
uses : actions/setup-node@v4 | |
with : | |
node-version : '20.9.0' | |
- name : Install tsp | |
run : npm install -g @typespec/compiler | |
- name : Validate tsp files | |
run : | | |
cd typespec | |
tsp install | |
tsp compile . | |