diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-10-04 12:22:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-10-04 12:22:44 +0000 |
commit | 258ebf86e270c9730a876c7aa1bdb69d0de6f9aa (patch) | |
tree | 09e011af68711c0e5c92298d475450cbd1cc7be1 /.github | |
parent | Releasing debian version 1.7.3-2. (diff) | |
download | ttyd-258ebf86e270c9730a876c7aa1bdb69d0de6f9aa.tar.xz ttyd-258ebf86e270c9730a876c7aa1bdb69d0de6f9aa.zip |
Merging upstream version 1.7.4.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/frontend.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index f0005f1..e134729 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -17,10 +17,12 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '16.x' + node-version: 18 - name: Run yarn install, check and build run: | - cd html + corepack enable + corepack prepare yarn@stable --activate yarn install yarn run check yarn run build + working-directory: html |