Skip to content

Commit

Permalink
Update code-scanning.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wwahammy committed Aug 28, 2023
1 parent abd845e commit cdaf549
Showing 1 changed file with 8 additions and 13 deletions.
21 changes: 8 additions & 13 deletions .github/workflows/code-scanning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,19 @@ env:
tool_ruby_version: "2.7.7"
jobs:
npm-package-download: # this downloads and caches all of the packages. We need this run on main so PRs to main can reuse the cache
uses: './.github/workflows/npm-cache-packages.yml'
uses: './.github/workflows/cache-packages.yml'
with:
os: ubuntu-20.04
install-node: true
node: 14.x

gem-package-download: # this downloads and caches all of the packages. We need this run on main so PRs to main can reuse the cache
name: Download and cache any gem packages
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
ruby: [2.7.7]
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
uses: './.github/workflows/cache-packages.yml'
with:
os: ubuntu-20.04
install-ruby: true
node: 2.7.7

eslint:
runs-on: ubuntu-latest
needs:
Expand Down

0 comments on commit cdaf549

Please sign in to comment.