fix: socket params is not a function #24
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: 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: | | |
**/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 | |
- name: ✏️ Lint | |
run: yarn lint |