Skip to content

dont escape prop and attribute values #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
33 changes: 18 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,34 @@ on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: purescript-contrib/setup-purescript@main
- name: Set up a PureScript toolchain
uses: purescript-contrib/setup-purescript@main
with:
purescript: "unstable"
purescript: "latest"
purs-tidy: "0.11.0" # "latest"
spago: "unstable"

- uses: actions/setup-node@v2
- name: Cache PureScript dependencies
uses: actions/cache@v4
with:
node-version: "14"

- name: Install dependencies
run: |
npm install -g bower
npm install
bower install --production
key: ${{ runner.os }}-spago-${{ hashFiles('**/spago.lock') }}
path: |
.spago
output

- name: Build source
run: npm run-script build
run: spago build --censor-stats --strict --ensure-ranges --pedantic-packages

- name: Run tests
run: |
bower install
npm run-script test --if-present
run: spago test --offline --censor-stats --strict --pedantic-packages

- name: Verify formatting
run: purs-tidy check src test
15 changes: 0 additions & 15 deletions bower.json

This file was deleted.

Loading