Skip to content

change to use native npm #50

change to use native npm

change to use native npm #50

Workflow file for this run

name: Test
on:
push:
branches: [master, develop]
pull_request:
jobs:
test:
name: Test
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node: [ 14, 16, 18 ]
runs-on: ${{ matrix.os }}
timeout-minutes: 10
name: Node ${{ matrix.node }} on ${{ matrix.os }}

Check failure on line 18 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 18
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
env:
OPENAI_KEY: ${{ secrets.OPENAI_KEY }}
with:
node-version: ${{ matrix.node }}
- run: npm install --no-audit --ignore-scripts
- run: npm test
- run: npm type-check
- run: npm lint
- run: npm build
- run: npm test