Do not expose Unsplash Access Key by receiving the proxy URL #283
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: CI | |
on: | |
push: | |
branches: | |
- main | |
- 'v*.[0-9]' | |
pull_request: | |
permissions: # added using https://github.com/step-security/secure-workflows | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@18bf8ad2ca49c14cbb28b91346d626ccfb00c518 # v2.1.0 | |
with: | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
coveralls.io:443 | |
github.com:443 | |
registry.yarnpkg.com:443 | |
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 | |
- name: Install modules | |
run: yarn | |
- name: Run linter | |
run: yarn lint | |
- name: Run tests | |
run: yarn test --coverage | |
- name: Coveralls | |
uses: coverallsapp/github-action@3284643be2c47fb6432518ecec17f1255e8a06a6 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |