Revisions for ⁨Config.yml⁩

View the changes made to this paste.

unlisted ⁨1⁩ ⁨file⁩ 2021-05-29 21:32:50 UTC

pastefile1

@@ -0,0 +1,22 @@

+version: 2
+
+name: test
+
+on:
+  - push
+  - pull_request
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    timeout-minutes: 3
+    steps:
+      - uses: actions/checkout@v1
+      - name: Setup Node.js V14
+        uses: actions/setup-node@v1
+        with:
+          node-version: 14.x
+      - name: Install dependencies
+        run: yarn add
+      - name: Run Linter
+        run: yarn run lint:fix
\ No newline at end of file