version: 2.1 orbs: browser-tools: circleci/browser-tools@1.1 jobs: build: docker: - image: cimg/elixir:1.14-browsers - image: cimg/postgres:14.6 steps: - browser-tools/install-browser-tools: path: ~/ - checkout - run: name: Install hex command: mix local.hex --force - run: name: Install rebar command: mix local.rebar --force - run: name: Install mix deps command: mix deps.get workflows: build-workflow: jobs: - build