Improve docs on Using Custom Config Parameters #2184
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: Check JavaScript | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: 'Checkout' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
name: 'Setup Node' | |
- run: cd lib/IHP/DataSync && npm install | |
name: 'Install NPM Packages' | |
- run: cd lib/IHP/DataSync && npm run typecheck | |
name: 'Typechecking DataSync modules' | |
- run: cd lib/IHP/DataSync && npm run test | |
name: 'Testing DataSync modules' |