mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
Add a GitHub Actions to build the Docker image
Make sure that "docker build" is working on every pull request before landing on master.
This commit is contained in:
parent
106219e5b5
commit
2fae2d3ea5
1 changed files with 15 additions and 0 deletions
15
.github/workflows/build-docker.yml
vendored
Normal file
15
.github/workflows/build-docker.yml
vendored
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
name: Build Docker image
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-docker:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- run: docker build -t excalidraw .
|
Loading…
Add table
Add a link
Reference in a new issue