Skip to content

[Chore] - Updated CI and Added Caching Feature #99

[Chore] - Updated CI and Added Caching Feature

[Chore] - Updated CI and Added Caching Feature #99

Workflow file for this run

name: "CodeQL"
on:
workflow_dispatch:
pull_request:
branches: [ master ]
push:
branches: [ master ]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'javascript', 'typescript', 'python' ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- name: Cache NPM Dependencies
id: cache-npm

Check failure on line 38 in .github/workflows/CodeQL-Analysis.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/CodeQL-Analysis.yml

Invalid workflow file

You have an error in your yaml syntax on line 38
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
- name: Check Cache & Install Dependencies
if: steps.cache-npm.outputs.cache-hit != 'true'
run: npm install --no-audit
- name: Build 3dmol.js
run: |
npm run build:dev
npm run build:prod
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
config-file: ./.github/codeql/codeql-config.yml
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2