chore(deps): update dependency typescript to v5.8.2 #36
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: Types Integration Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
permissions: | |
contents: read | |
jobs: | |
eslint_json: | |
name: Types (@eslint/json) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout momoa | |
uses: actions/checkout@v4 | |
with: | |
path: momoa | |
- name: Checkout @eslint/json | |
uses: actions/checkout@v4 | |
with: | |
repository: eslint/json | |
path: json | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/*" | |
- name: Install Packages (momoa/js) | |
working-directory: momoa/js | |
run: npm install | |
- name: Install Packages (eslint/json) | |
working-directory: json | |
run: | | |
npm install | |
npm run build | |
npm install ../momoa/js | |
- name: Run TSC | |
working-directory: json | |
run: npm run test:types |