Skip to content

chore(deps): Bump scrapy from 2.7.1 to 2.11.2 in /packages/dev/Languages/Python #846

chore(deps): Bump scrapy from 2.7.1 to 2.11.2 in /packages/dev/Languages/Python

chore(deps): Bump scrapy from 2.7.1 to 2.11.2 in /packages/dev/Languages/Python #846

Workflow file for this run

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