Skip to content

[dist] TravisCI I weep for thee #1

[dist] TravisCI I weep for thee

[dist] TravisCI I weep for thee #1

Workflow file for this run

name: ci
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['0.8.x', '12.x', '14.x']
steps:
- uses: actions/checkout@v4

Check failure on line 17 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yaml

Invalid workflow file

You have an error in your yaml syntax on line 17
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm run test
```