Skip to content

feat(built-in): string methods: length, toUppercase, toLowercase #5

feat(built-in): string methods: length, toUppercase, toLowercase

feat(built-in): string methods: length, toUppercase, toLowercase #5

Workflow file for this run

name: Test Pull Request
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test