mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
20 lines
No EOL
328 B
Text
20 lines
No EOL
328 B
Text
name: Node.js CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12.x
|
|
- run: npm install
|
|
- run: npm run build
|
|
- run: npm run lint
|
|
- run: npm test
|
|
env:
|
|
CI: true |