Skip to content

[Snyk] Upgrade @capacitor/core from 8.0.0 to 8.0.1 #77

[Snyk] Upgrade @capacitor/core from 8.0.0 to 8.0.1

[Snyk] Upgrade @capacitor/core from 8.0.0 to 8.0.1 #77

Workflow file for this run

name: pull_requests
on:
pull_request:
branches: [ main ]
jobs:
# Here you define the name of your workflow in this case "build"
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
# The following lines will Cache the npm modules when running the test
# so the actions will be faster
- name: Cache node modules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Create environment file
run: |
echo "Creating environment file..."
echo "${{ secrets.ENVIRONMENT_VARIABLES }}" | base64 -d >> .env
- name: Run npm install
run: npm i
- name: Replace Firebase env vars
run: node ./scripts/firebase-replace-env.js
- name: Linting code
run: npm run lint
- name: Check code style
run: npm run format:check:ci
- name: Run npm build
run: npm run build
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@v6
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}