[WIP] Fix invalid devcontainer.json configuration #25
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: CI | |
| on: | |
| push: | |
| branches: [ main, Dreadwitdastacc-Ifawole, feat/testcontainers-cloud-check ] | |
| pull_request: | |
| branches: [ main, Dreadwitdastacc-Ifawole ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read # for actions/checkout | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| lfs: true | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| - name: Install | |
| run: npm ci | |
| - name: Lint code | |
| run: npm run lint:check | |
| - name: Check formatting | |
| run: npm run format:check | |
| - name: Run tests | |
| run: npx vitest run --reporter dot | |
| - name: Build | |
| run: npm run build |