chore(deps): Bump cryptography from 48.0.1 to 50.0.0 in /services/datalad #572
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: TypeScript tests and coverage | |
| on: | |
| push: { branches: [master] } | |
| pull_request: { branches: [master] } | |
| defaults: | |
| run: | |
| working-directory: ./services/datalad | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22.x, 24.x] | |
| steps: | |
| - uses: actions/checkout@v7.0.0 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'yarn' | |
| - run: yarn install | |
| - name: Run production vite build | |
| working-directory: ./packages/openneuro-app | |
| run: yarn build | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |