8000 port · stackpress/idea@7d4fc2a · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

port

port #2

Workflow file for this run

name: Idea Test Suite
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install dependencies
run: yarn
- name: Building code
run: yarn build
- name: Run tests
run: yarn test
0