Bump govuk-components from 5.7.0 to 5.7.1 #533
This file contains 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: Test Workflow | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: test-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
env: | |
RAILS_ENV: test | |
RACK_ENV: test | |
DEV_TOOLS_ENABLED: "1" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Ruby and install gems | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Install packages | |
run: yarn install --frozen-lockfile | |
- name: Precompile assets | |
run: bin/rails assets:precompile | |
- name: Lint stylesheets | |
run: yarn run lint | |
- name: Lint Ruby files | |
run: bundle exec rubocop | |
- name: Security audit application code | |
run: bundle exec brakeman -q | |
- name: Run tests | |
run: bundle exec rspec | |
- name: Code coverage | |
uses: joshmfrankel/simplecov-check-action@main | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
minimum_suite_coverage: 100 | |
minimum_file_coverage: 100 | |
call-build-and-deploy: | |
if: ${{ github.ref == 'refs/heads/main' }} | |
needs: test | |
uses: ./.github/workflows/deploy.yml | |
secrets: inherit |