Skip to content

fix single quotes

fix single quotes #142

Workflow file for this run

name: Pull Request
on: [pull_request]
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: "18.x"
- name: Install dependencies
run: yarn
- name: Run static code analysis
run: yarn run lint
- name: Run tests
run: yarn test
LicenseCheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: "18.x"
- name: Install dependencies
run: yarn
- name: Check licenses
run: |
yarn add -D danger
yarn danger ci --failOnErrors --verbose --id LicenceAuditor
env:
DANGER_GITHUB_API_TOKEN: ${{ secrets.ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
PROJECT_PATH: "."