diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 02d579f..0b2fdff 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -11,25 +11,25 @@ on: - main jobs: - Lint: - name: Linting - runs-on: ubuntu-latest + # Lint: + # name: Linting + # runs-on: ubuntu-latest - steps: - - name: Check out Git repository - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3 + # steps: + # - name: Check out Git repository + # uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3 - - name: Set up Node.js - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3 - with: - node-version: 17 + # - name: Set up Node.js + # uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3 + # with: + # node-version: 17 # Prettier must be in `package.json` - - name: Install Node.js dependencies - run: npm i + # - name: Install Node.js dependencies + # run: npm i - - name: Run Prettier - run: npm run format + # - name: Run Prettier + # run: npm run format Test: name: Testing