diff options
| author | 2022-11-10 14:08:54 +0100 | |
|---|---|---|
| committer | 2022-11-10 14:08:54 +0100 | |
| commit | ebff71f77a4ef80d5fbc3919befd46039c0ea9ba (patch) | |
| tree | 8460a4646705a6d840c762a6d51c0489d4846d18 /.drone.yml | |
| parent | [frontend] fix conflict introduced by merge (#1007) (diff) | |
| download | gotosocial-ebff71f77a4ef80d5fbc3919befd46039c0ea9ba.tar.xz | |
[chore/frontend] CI steps for frontend stuff (#997)
* re-add eslint
* fix oauth url getting too long
* actually attach single emoji get and delete routes
* basic emoji details + deletion using rtk query
* refactor emoji upload to rtk query
* clean up old redux api+reducers for custom emoji
* fix validation order
* refactor custom emoji form fields
* remove unused requires
* cleanup, fix most eslint errors
* more small eslint fixes
* eslint & web bundle in CI
* fix directories, move lint+build to scripts
* working dirs
* test linter and build errors
* upgrade skulk for better error handling
* Revert "test linter and build errors"
This reverts commit dc047d5b444c41a90209d02bb4ed4893ccf0885f.
* fix max emoji size
* tiny bit of function documentation
* sign drone.yml
Co-authored-by: tsmethurst <tobi.smethurst@protonmail.com>
Diffstat (limited to '.drone.yml')
| -rw-r--r-- | .drone.yml | 39 |
1 files changed, 38 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml index 7599dc48f..544555265 100644 --- a/.drone.yml +++ b/.drone.yml @@ -44,6 +44,43 @@ steps: include: - pull_request + - name: web-setup + image: node:14-alpine + when: + event: + include: + - pull_request + volumes: + - name: yarn_cache + path: /tmp/cache + commands: + - cd web/source + - yarn --frozen-lockfile --cache-folder /tmp/cache + + - name: web-lint + image: node:14-alpine + when: + event: + include: + - pull_request + depends_on: + - web-setup + commands: + - cd web/source + - yarn run lint + + - name: web-build + image: node:14-alpine + when: + event: + include: + - pull_request + depends_on: + - web-setup + commands: + - cd web/source + - yarn run build + - name: snapshot image: superseriousbusiness/gotosocial-drone-build:0.0.7 # https://github.com/superseriousbusiness/gotosocial-drone-build volumes: @@ -146,6 +183,6 @@ steps: --- kind: signature -hmac: 86caf3c98d6135ac53e05b728e999d03f8b35606f1b5bab63c2c521bf5084173 +hmac: db02a09af7262a2bab5a0cb4bfd82fa7e1dc566c29e55e6e0808e8f1dc92803b ... |
