mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
* update events for GH actions to include PRs * change action events to pull_request only
22 lines
358 B
YAML
22 lines
358 B
YAML
name: Node CI
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Setup Node.js 12.x
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12.x
|
|
|
|
- name: Install and test
|
|
run: |
|
|
npm ci
|
|
npm run test:app
|
|
env:
|
|
CI: true
|