]> git.immae.eu Git - github/bastienwirtz/homer.git/commitdiff
Auto PR lint
authorBastien Wirtz <bastien.wirtz@gmail.com>
Sun, 10 Oct 2021 07:23:35 +0000 (09:23 +0200)
committerBastien Wirtz <bastien.wirtz@gmail.com>
Sun, 10 Oct 2021 07:23:35 +0000 (09:23 +0200)
.github/workflows/integration.yml [new file with mode: 0644]
.github/workflows/release.yml [moved from .github/workflows/main.yml with 100% similarity]

diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml
new file mode 100644 (file)
index 0000000..196113d
--- /dev/null
@@ -0,0 +1,31 @@
+# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
+# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
+
+name: Node.js CI
+
+on:
+  push:
+    branches: [ main ]
+  pull_request:
+    branches: [ main ]
+
+jobs:
+  build:
+
+    runs-on: ubuntu-latest
+
+    strategy:
+      matrix:
+        node-version: [16.x]
+        # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
+
+    steps:
+    - uses: actions/checkout@v2
+    - name: Use Node.js ${{ matrix.node-version }}
+      uses: actions/setup-node@v2
+      with:
+        node-version: ${{ matrix.node-version }}
+        cache: 'yarn'
+    - run: yarn install
+    - run: yarn lint
+