Skip to content

Bump xml2js from 0.4.23 to 0.5.0 #370

Bump xml2js from 0.4.23 to 0.5.0

Bump xml2js from 0.4.23 to 0.5.0 #370

Workflow file for this run

name: Check
on:
push:
branches:
- 'master'
pull_request:
jobs:
main:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [18.x]
env:
ELM_HOME: '${{ github.workspace }}/elm-stuff/elm-home'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '${{ matrix.node-version }}'
- name: Cache node_modules
id: cache-node_modules
uses: actions/cache@v3
with:
path: node_modules
key: node_modules-${{ matrix.os }}-${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
- name: Cache ELM_HOME
uses: actions/cache@v3
with:
path: '${{ env.ELM_HOME }}'
key: elm-${{ matrix.os }}-${{ hashFiles('elm-tooling.json', 'elm/**/elm.json', 'example-*/**/elm.json', 'tests/**/elm.json') }}
- name: npm ci
if: steps.cache-node_modules.outputs.cache-hit != 'true'
run: npm ci
env:
NO_ELM_TOOLING_INSTALL: 1
- name: elm-tooling install
run: npx --no-install elm-tooling install
- name: Flow
run: npx --no-install flow check
- name: ESLint
run: npx --no-install eslint --report-unused-disable-directives .
- name: Prettier
run: npx --no-install prettier --check .
- name: elm-format
run: npx --no-install elm-format --validate elm
- name: elm-review
run: npx --no-install elm-review
working-directory: elm