Bump the javascript-dependencies group across 1 directory with 7 updates #690
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
push: | |
branches: [ main ] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint_openapi: | |
name: Lint OpenAPI Spec | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.tool-versions' | |
cache: yarn | |
- name: Install JS Deps | |
run: yarn install --frozen-lockfile | |
- name: Run linter | |
run: yarn openapi-lint | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_JOBS: 3 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.tool-versions' | |
cache: yarn | |
- name: Install JS Deps | |
run: yarn install --frozen-lockfile | |
- name: Run Tests | |
run: bundle exec rake |