Skip to content

Updating dependencies, using react 18 internally #17

Updating dependencies, using react 18 internally

Updating dependencies, using react 18 internally #17

Workflow file for this run

name: Build
on:
push:
branches: [ 'master' ]
pull_request:
branches: [ 'master' ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'npm'
- name: Install
run: npm ci
- name: Lint
run: npm run eslint
- name: Build
run: npm run build
- name: Check Git changes
uses: multani/git-changes-action@v1