Skip to content

chore(deps): Bump tar from 6.1.12 to 6.2.1 #840

chore(deps): Bump tar from 6.1.12 to 6.2.1

chore(deps): Bump tar from 6.1.12 to 6.2.1 #840

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