chore(deps): Bump scrapy from 2.7.1 to 2.11.1 in /packages/dev/Languages/Python #843
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: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Cache node modules | |
uses: actions/cache@v3 | |
id: yarn-cache | |
env: | |
NPM_TOKEN: ${{ secrets.GOATLAB_NPM_TOKEN }} | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Config npm secret token | |
run: echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc | |
- name: Installing Fluent´s Dependencies | |
run: export NPM_TOKEN=${{ secrets.GOATLAB_NPM_TOKEN }} && yarn | |
- name: Building Fluent | |
run: export NPM_TOKEN=${{ secrets.GOATLAB_NPM_TOKEN }} && yarn build | |
- name: Testing Fluent | |
env: | |
FIREBASE_SERVICE_ACCOUNT: ${{ secrets.FIREBASE_SERVICE_ACCOUNT }} | |
run: export NPM_TOKEN=${{ secrets.GOATLAB_NPM_TOKEN }} && yarn test |