fix: Use language overlay and highlight functions #5
Workflow file for this run
This file contains hidden or 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: CI Pull Requests | |
| on: [pull_request] | |
| jobs: | |
| ci-pull-request: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out commit | |
| uses: actions/checkout@v3 | |
| - name: Use Node.js 18 | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18.x | |
| - name: Install, prepare and test | |
| run: | | |
| npm install --frozen-lockfile | |
| npm run prepare | |
| npm run test |