mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
25 lines
485 B
YAML
25 lines
485 B
YAML
name: Node CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12.x
|
|
- name: npm install, build, and test
|
|
run: |
|
|
npm ci
|
|
<<<<<<< HEAD:.github/workflows/nodejs.yml
|
|
=======
|
|
npm run build --if-present
|
|
>>>>>>> 6599f97088dcda01d7b05abe9afc732165f0af62:.github/workflows/nodejs.yml
|
|
npm run lint
|
|
npm test
|
|
env:
|
|
CI: true
|