Cypress Job Fail

Hi everyone, here is my cypress.config, after pushing job starts, but i have an error.

const { defineConfig } = require("cypress");

module.exports = defineConfig({
  video: true,
  projectId: "akr42b",
  browser: ["chrome"],

  // Define the `retries` configuration directly under the main object
  // Other Cypress configuration options can be added here as needed
  retries: {
    // Configure retry attempts for `cypress run`
    runMode: 0,
    // Configure retry attempts for `cypress open`
    openMode: 0,
  },

  defaultCommandTimeout: 10000, // Set the default timeout to 10,000 milliseconds (10 seconds) 



  e2e: {
    setupNodeEvents(on, config) {
      return {
        browsers: config.browsers.filter(
          (b) => b.family === "chromium" && b.name !== "electron"
        ),
      }
    },
  },
});


Can someone help me please?

Now i have this error.
sh: 1: cypress: Permission denied