Skip to content

Add docker and proxy settings #1

Add docker and proxy settings

Add docker and proxy settings #1

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
env:
- PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1

Check failure on line 6 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 6, Col: 3): A sequence was not expected
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- name: Code Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Code Linting
run: pnpm run lint
- name: Code Testing
run: pnpm run test