Remove use of eda_study_id and url-based cache for permissions (#302) #231
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: Generate caches | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
# Cache yarn install command | |
# See https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#example-using-the-cache-action | |
cache-yarn: | |
name: Generate yarn cache | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
cache: yarn | |
- run: yarn | |