[Changed] bump playwright-core to v1.32.0 #284
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Playwright-Elixir CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
all: | |
name: Build & Test | |
runs-on: ubuntu-20.04 | |
env: | |
MIX_ENV: test | |
PLAYWRIGHT_TRANSPORT: driver | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Elixir | |
uses: erlef/setup-elixir@v1 | |
with: | |
elixir-version: '1.12.0' | |
otp-version: '24.0.1' | |
- name: Install Elixir dependencies | |
run: mix deps.get | |
- name: Install Node dependencies | |
run: npm install --prefix assets | |
- name: Run tests | |
run: mix test |