build(deps): bump coroutines from 1.8.1 to 1.9.0 #1557
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Web CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [ 'current', 'latest' ] | |
name: Build on Node ${{ matrix.Node }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node ${{ matrix.Node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.Node }} | |
- name: Install NPM Packages | |
working-directory: web | |
run: npm install | |
- name: Build frontend | |
working-directory: web | |
run: npm run build | |
# TODO: upload artifacts |