https #864
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: build | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: dependencies | |
run: | | |
npm install -g typescript | |
npm i | |
- name: build bot | |
run: | | |
npm run build | |
- name: build cppref scraper | |
run: | | |
cd indexes/cppref | |
npx tsc | |
- name: build man7 scraper | |
run: | | |
cd indexes/man7 | |
npx tsc |