Skip to content

fix(deps): update dependency chemicaltools-bot to v1.0.63 #502

fix(deps): update dependency chemicaltools-bot to v1.0.63

fix(deps): update dependency chemicaltools-bot to v1.0.63 #502

Workflow file for this run

on:
push:
branches:
- master
tags:
- v*
pull_request:
name: Install
jobs:
yarnInstall:
name: yarn install
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
- run: npm install -g yarn
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: yarn install