Merge pull request #1835 from digitallyinduced/bounded-tests-fix #1939
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: | |
push: | |
branches: '*' | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
name: 'Checkout' | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
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' |