Skip to content

build(deps): bump react, react-dom and @types/react #3

build(deps): bump react, react-dom and @types/react

build(deps): bump react, react-dom and @types/react #3

Workflow file for this run

name: Build
on: [push]
jobs:
build:
strategy:
matrix:
node-version: [20.x]
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build (typecheck) the project
run: npm run build
- name: Lint the project
run: npm run lint
image:
needs: build
uses: ./.github/workflows/image.yml
secrets: inherit