diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index b2b0aa37..65b04707 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -22,81 +22,81 @@ jobs: steps: - uses: actions/checkout@v2 - run: npm install - - run: cd examples && yarn && npm run test -- auto-relay + - run: cd examples && npm install && npm run test -- auto-relay test-chat-example: needs: check runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: npm install - - run: cd examples && yarn && npm run test -- chat + - run: cd examples && npm install && npm run test -- chat test-connection-encryption-example: needs: check runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: npm install - - run: cd examples && yarn && npm run test -- connection-encryption + - run: cd examples && npm install && npm run test -- connection-encryption test-discovery-mechanisms-example: needs: check runs-on: macos-latest steps: - uses: actions/checkout@v2 - run: npm install - - run: cd examples && yarn && npm run test -- discovery-mechanisms + - run: cd examples && npm install && npm run test -- discovery-mechanisms test-echo-example: needs: check runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: npm install - - run: cd examples && yarn && npm run test -- echo + - run: cd examples && npm install && npm run test -- echo test-libp2p-in-the-browser-example: needs: check runs-on: macos-latest steps: - uses: actions/checkout@v2 - run: npm install - - run: cd examples && yarn && npm run test -- libp2p-in-the-browser + - run: cd examples && npm install && npm run test -- libp2p-in-the-browser test-peer-and-content-routing-example: needs: check runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: npm install - - run: cd examples && yarn && npm run test -- peer-and-content-routing + - run: cd examples && npm install && npm run test -- peer-and-content-routing test-pnet-example: needs: check runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: npm install - - run: cd examples && yarn && npm run test -- pnet + - run: cd examples && npm install && npm run test -- pnet test-protocol-and-stream-muxing-example: needs: check runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: npm install - - run: cd examples && yarn && npm run test -- protocol-and-stream-muxing + - run: cd examples && npm install && npm run test -- protocol-and-stream-muxing test-pubsub-example: needs: check runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: npm install - - run: cd examples && yarn && npm run test -- pubsub + - run: cd examples && npm install && npm run test -- pubsub test-transports-example: needs: check runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: npm install - - run: cd examples && yarn && npm run test -- transports + - run: cd examples && npm install && npm run test -- transports test-webrtc-direct-example: needs: check runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: npm install - - run: cd examples && yarn && npm run test -- webrtc-direct \ No newline at end of file + - run: cd examples && npm install && npm run test -- webrtc-direct \ No newline at end of file