build(deps): bump actions/setup-node from 1.4.6 to 6.0.0 #1173
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: DSmartTrader Test | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build_and_test: | |
| name: Build and Test | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
| - name: Setup Node | |
| uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 | |
| with: | |
| node-version: 18.x | |
| - name: Install dependencies | |
| uses: "./.github/actions/npm_install" | |
| - name: Build | |
| uses: "./.github/actions/build" | |
| with: | |
| target: production | |
| - name: "Run Tests" | |
| run: npm run test |