File Explorer

/var/runtime/node_modules/@aws-sdk/node_modules/help-me/.github/workflows

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

ci.yml450 B · 28 lines
name: ci on: [push, pull_request] jobs:  test:    runs-on: ubuntu-latest     strategy:      matrix:        node-version: [10.x, 12.x, 14.x, 16.x]     steps:      - uses: actions/checkout@v2       - name: Use Node.js        uses: actions/setup-node@v1        with:          node-version: ${{ matrix.node-version }}       - name: Install        run: |          npm install       - name: Run tests        run: |          npm run test