Skip to content

Manually expand glob expression in watch_files #59

Manually expand glob expression in watch_files

Manually expand glob expression in watch_files #59

Workflow file for this run

name: Lightning CSS
on:
push:
branches:
- main
pull_request:
concurrency:
group: lightning-css-${{ github.head_ref }}
cancel-in-progress: true
env:
DEBUG: 1
OTP_VERSION: 25.0.4
ELIXIR_VERSION: 1.15.0
MIX_ENV: test
jobs:
credo:
name: Credo
runs-on: 'ubuntu-latest'
timeout-minutes: 15
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: erlef/setup-elixir@v1
with:
otp-version: ${{ env.OTP_VERSION }}
elixir-version: ${{ env.ELIXIR_VERSION }}
- name: Restore Cache
uses: actions/cache@v3
id: mix-cache
with:
path: |
deps
_build
_site
key: mix-${{ hashFiles('mix.lock') }}
- run: mix deps.get
- run: mix credo
test:
name: Test
runs-on: 'ubuntu-latest'
timeout-minutes: 15
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: erlef/setup-elixir@v1
with:
otp-version: ${{ env.OTP_VERSION }}
elixir-version: ${{ env.ELIXIR_VERSION }}
- name: Restore Cache
uses: actions/cache@v3
id: mix-cache
with:
path: |
deps
_build
_site
key: mix-${{ hashFiles('mix.lock') }}
- run: mix deps.get
- run: mix test