mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
Add github workflow
This commit is contained in:
parent
b4cc0653a9
commit
36b36e8dc3
4 changed files with 22 additions and 11101 deletions
20
.github/workflows
vendored
Normal file
20
.github/workflows
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue