diff options
author | Valentin Popov <valentin@popov.link> | 2024-09-11 23:25:20 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-09-11 23:25:20 +0300 |
commit | d3034596b77d3983253d3558f0bf581e42db3171 (patch) | |
tree | d1ffcaa69a6d089697d7c69982ec5ca6faecd4ba /.gitea | |
parent | be3616d2d6d3cff3604880e02b079a2b71b50ff9 (diff) | |
download | popov.link-d3034596b77d3983253d3558f0bf581e42db3171.tar.xz popov.link-d3034596b77d3983253d3558f0bf581e42db3171.zip |
Update deploy workflow to include build step and testing Gitea Action
Diffstat (limited to '.gitea')
-rw-r--r-- | .gitea/workflows/main.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml new file mode 100644 index 0000000..6ee3279 --- /dev/null +++ b/.gitea/workflows/main.yml @@ -0,0 +1,14 @@ +name: Test +on: [push, pull_request] + +jobs: + test: + container: gitea/runner-images:ubuntu-latest + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 22 + - run: npm ci + - run: npm run check |