Potential fix for code scanning alert no. 10: Workflow does not contain permissions #469
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: | |
| pull_request: | |
| branches: ["*"] | |
| push: | |
| branches: [master] | |
| concurrency: ci-${{ github.ref }} | |
| permissions: | |
| contents: read | |
| jobs: | |
| scan_ruby: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: .ruby-version | |
| bundler-cache: true | |
| - name: Scan for security vulnerabilities in Ruby dependencies | |
| run: bin/brakeman --no-pager | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: .ruby-version | |
| bundler-cache: true | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 24 | |
| cache: yarn | |
| - name: Install dependencies | |
| run: yarn install --immutable | |
| - name: Lint code for consistent style | |
| run: bin/rubocop -f github | |
| - name: Lint JS code for consistent style | |
| run: yarn standard | |
| - name: erb-lint | |
| run: bundle exec erb_lint --lint-all | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| env: | |
| RAILS_ENV: test | |
| BUNDLE_JOBS: 4 | |
| BUNDLE_PATH: "vendor/bundle" | |
| services: | |
| postgres: | |
| image: postgres:13 | |
| ports: ["5432:5432"] | |
| env: | |
| POSTGRES_USER: postgres | |
| POSTGRES_DB: paris_rb_test | |
| POSTGRES_PASSWORD: postgres | |
| redis: | |
| image: redis | |
| ports: ["6379:6379"] | |
| steps: | |
| - name: Checkout Commit | |
| uses: actions/checkout@v4 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: .ruby-version | |
| bundler-cache: true | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 24 | |
| cache: yarn | |
| - name: Install JS dependencies | |
| run: yarn install --immutable | |
| - name: Prepare database | |
| env: | |
| PGHOST: localhost | |
| PGUSER: postgres | |
| PGPASSWORD: postgres | |
| run: | | |
| cp config/database.ci.yml config/database.yml | |
| bin/rails db:create db:schema:load | |
| - name: Run tests | |
| run: bin/rails test:all | |
| - name: Smoke test database seeds | |
| run: bin/rails db:reset |