Skip to content

chore(deps-dev): bump @types/node from 20.9.2 to 20.10.0 #36

chore(deps-dev): bump @types/node from 20.9.2 to 20.10.0

chore(deps-dev): bump @types/node from 20.9.2 to 20.10.0 #36

Workflow file for this run

name: Build and Test
on: [push, 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 }}