Skip to content

Bump braces from 3.0.2 to 3.0.3 in /hdrop-web-next #49

Bump braces from 3.0.2 to 3.0.3 in /hdrop-web-next

Bump braces from 3.0.2 to 3.0.3 in /hdrop-web-next #49

Workflow file for this run

name: web
on:
pull_request:
push:
branches:
- development
- production
jobs:
test:
runs-on: [ubuntu-latest]
strategy:
matrix:
node: [20, 21]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn
working-directory: ./hdrop-web-next
- name: Test
run: yarn test
working-directory: ./hdrop-web-next
- name: Lint
run: yarn lint
working-directory: ./hdrop-web-next
license-check:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: yarn
working-directory: ./hdrop-web-next
- name: Check licenses
run: ./check_licenses.sh
working-directory: ./hdrop-web-next