Skip to content

chore(deps): bump react-dom and @types/react-dom #189

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

chore(deps): bump react-dom and @types/react-dom #189

Workflow file for this run

name: Build and Test
on: pull_request
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/setup-node@v3.7.0
with:
node-version: 16
cache: npm
- run: npm ci
- run: npm test
build:
name: Build ${{ matrix.build_target }}
runs-on: ubuntu-latest
strategy:
matrix:
build_target:
- chromium
- firefox
- web
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/setup-node@v3.7.0
with:
node-version: 16
cache: npm
- run: npm ci
- run: npm run build:${{ matrix.build_target }}
env:
UNSPLASH_API_KEY: ${{ secrets.UNSPLASH_API_KEY }}
NASA_API_KEY: ${{ secrets.NASA_API_KEY }}
- uses: actions/upload-artifact@v3
with:
name: tab-nine-${{ matrix.build_target }}
path: dist/${{ matrix.build_target }}