Skip to content

chore(deps): change the deps of the npm package to try and fix a bug #154

chore(deps): change the deps of the npm package to try and fix a bug

chore(deps): change the deps of the npm package to try and fix a bug #154

Workflow file for this run

name: ci
on:
pull_request:
branches: [master, develop, alpha, beta]
workflow_dispatch:
jobs:
build:
name: Running project
if:
"!contains(toJSON(github.event.commits.*.message), 'chore(release):') &&
github.event.pull_request.draft != true"
runs-on: ubuntu-latest
strategy:
matrix:
node: [14]
env:
CI: true
steps:
- name: 🛒 Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.GH_TOKEN }}
- name: 💿 Setup Nodejs
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://npm.pkg.github.com'
- name: 💾 Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: 💾 Cache
uses: actions/cache@v3
id: yarn-cache
with:
path: |
**/.cache/Cypress
**/cypress/cache
**/node_modules
${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn
- name: 🧩 Install dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install --prefer-offline --frozen-lockfile
- name: 📋 Yarn Lock Changes
uses: Simek/yarn-lock-changes@main
with:
updateComment: 'true'
token: ${{ secrets.GITHUB_TOKEN }}
- name: 🔨 Build Library
run: yarn build:libs
- name: ✏️ Lint
run: yarn lint:ts
- name: 🧪 Test
run: yarn test:no-cov