Skip to content

Update createMethods.ts wrong function call #68

Update createMethods.ts wrong function call

Update createMethods.ts wrong function call #68

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
Test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version:
- 18.x
os:
- ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{matrix.node-version}}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run Tests 🧪
run: yarn run test