Skip to content

Bump docker/build-push-action from 6 to 7 (#301) #1067

Bump docker/build-push-action from 6 to 7 (#301)

Bump docker/build-push-action from 6 to 7 (#301) #1067

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout branch 🛎
uses: actions/checkout@v6
- name: Setup node env 🏗
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies 👨🏻‍💻
run: yarn --frozen-lockfile
- name: Build 📦
run: yarn build
- name: Run linter 👀
run: yarn lint
- name: Run tests 🧪
run: yarn test:once