Skip to content

fix(sfppackage): fix handling of URL-encoded spaces in repository URLs #217

fix(sfppackage): fix handling of URL-encoded spaces in repository URLs

fix(sfppackage): fix handling of URL-encoded spaces in repository URLs #217

Workflow file for this run

# Unique name for this workflow
name: Validate PR and Run Tests
# Definition when the workflow should run
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
# Jobs to be executed
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: 'Install Dependencies'
run: npm i
- run: npm run build
- run: npm run test -- --colors
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}