Skip to content

Try again ci

Try again ci #192

Workflow file for this run

# SPDX-FileCopyrightText: 2021 Anders Rune Jensen

Check failure on line 1 in .github/workflows/node.js.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/node.js.yml

Invalid workflow file

`push pull_request` is not a valid event name
#
# SPDX-License-Identifier: Unlicense
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
push
pull_request
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- uses: pnpm/[email protected]
with:
version: 7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: pnpm install
- name: npm test
run: DEBUG=ssb:* npm test