Skip to content

Replace vanilla-extract with CSS modules and add E2E tests #49

Replace vanilla-extract with CSS modules and add E2E tests

Replace vanilla-extract with CSS modules and add E2E tests #49

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
env:
IMAGE_NAME: theknarf/dave
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Tests
run: yarn test
- name: Build Docker image
run: docker build . --tag $IMAGE_NAME