update elixir and npm versions

This commit is contained in:
shibao 2023-01-22 23:20:02 -05:00 committed by oliviasculley
parent 695002c9d9
commit 1cd28e43b8
3 changed files with 8 additions and 8 deletions

View File

@ -16,7 +16,7 @@ steps:
- assets/node_modules/
- name: test
image: elixir:1.13.4-alpine
image: elixir:1.14.1-alpine
environment:
TEST_DATABASE_URL: ecto://postgres:postgres@database/lokal_test
HOST: testing.example.tld
@ -29,7 +29,7 @@ steps:
- npm --prefix ./assets ci --progress=false --no-audit --loglevel=error
- npm run --prefix ./assets deploy
- mix do phx.digest, gettext.extract
- mix test
- mix test.all
- name: build and publish stable
image: thegeeklab/drone-docker-buildx
@ -38,7 +38,7 @@ steps:
repo: shibaobun/lokal
purge: true
compress: true
platforms: linux/amd64,linux/arm64,linux/arm/v7
platforms: linux/amd64,linux/arm/v7
username:
from_secret: docker_username
password:
@ -55,7 +55,7 @@ steps:
repo: shibaobun/lokal
purge: true
compress: true
platforms: linux/amd64,linux/arm64,linux/arm/v7
platforms: linux/amd64,linux/arm/v7
username:
from_secret: docker_username
password:

View File

@ -1,3 +1,3 @@
elixir 1.13.2-otp-24
erlang 24.2
nodejs 16.13.2
elixir 1.14.1-otp-25
erlang 25.1.2
nodejs 18.12.1

View File

@ -5,7 +5,7 @@ defmodule Lokal.MixProject do
[
app: :lokal,
version: "0.1.0",
elixir: "~> 1.13",
elixir: "~> 1.14",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: Mix.compilers(),
start_permanent: Mix.env() == :prod,