fix: apply axios vulnerability fix #1806
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: Tests | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| pull_request: | |
| branches: | |
| - '**' | |
| env: | |
| BEE_API_URL: 'http://127.0.0.1:1633' | |
| BEE_PEER_API_URL: 'http://127.0.0.1:11633' | |
| BEE_TEST_CHEQUEBOOK: true | |
| jobs: | |
| nodejs: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [18.x] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 1 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install npm deps | |
| run: npm install -g npm && npm ci && npm install -g @fairdatasociety/fdp-play | |
| - name: Start fdp-play environment | |
| run: npm run bee | |
| - name: Tests | |
| run: npm run test |