summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkz6fittycent <jimmy.tigert@gmail.com>2023-12-12 14:02:27 -0600
committerGitHub <noreply@github.com>2023-12-12 14:02:27 -0600
commitfb782a2ab32cc60ff6bcaec5ae13514ce5ca5390 (patch)
tree7ad3b2ccc46b872ac6b30c22f8e52cf61d7952ba
parent7f38f3a7bce7933bfc6464ee81a29b9c938d8a46 (diff)
Create test-snap-can-build.yml
-rw-r--r--.github/workflows/test-snap-can-build.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/test-snap-can-build.yml b/.github/workflows/test-snap-can-build.yml
new file mode 100644
index 0000000..9860b55
--- /dev/null
+++ b/.github/workflows/test-snap-can-build.yml
@@ -0,0 +1,25 @@
+name: 🧪 Test snap can be built on x86_64
+
+on:
+ push:
+ branches: [ main ]
+ pull_request:
+ branches: [ main ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ node-version: [16.x]
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - uses: snapcore/action-build@v1
+ id: build
+
+ - uses: diddlesnaps/snapcraft-review-action@v1
+ with:
+ snap: ${{ steps.build.outputs.snap }}
+ isClassic: 'false'