this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add test workflow

+16
+16
.github/workflows/test.yml
··· 1 + on: push 2 + jobs: 3 + test: 4 + name: Node.js ${{matrix.node-version}} on ${{matrix.os}} 5 + runs-on: ${{matrix.os}} 6 + strategy: 7 + matrix: 8 + node-version: [12, 14, 16] 9 + os: [macos-latest, ubuntu-latest, windows-latest] 10 + steps: 11 + - uses: actions/checkout@v2 12 + - uses: actions/setup-node@v2 13 + with: 14 + node-version: ${{matrix.node-version}} 15 + - run: npm install 16 + - run: npm test