Support scheme url starting with emoji #176
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-and-test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '2.7.18' # Version range or exact version of a Python version to use, using SemVer's version range syntax | |
- name: npm install | |
run: npm install | |
- name: install jsduck | |
run: gem install jsduck --user-install # Need user install because system dir is not accessible | |
- name: add jsduck to $PATH var | |
run: echo "${HOME}/.gem/ruby/2.7.0/bin" >> ${GITHUB_PATH} # This is how to add to $PATH on GitHub's runners | |
- name: build | |
run: npm run build | |
- name: test | |
run: npm run test |