diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 06ed895..a39bce1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,15 +10,16 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: purescript-contrib/setup-purescript@main with: purescript: "unstable" + purs-tidy: "latest" - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: - node-version: "14" + node-version: "lts/*" - name: Install dependencies run: | @@ -33,3 +34,7 @@ jobs: run: | bower install npm run-script test --if-present + + - name: Check formatting + run: | + purs-tidy check src test diff --git a/CHANGELOG.md b/CHANGELOG.md index c070b3c..9dd6f87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,9 @@ New features: Bugfixes: Other improvements: +- Update CI `node` to `lts/*` (#19 by @JordanMartinez) +- Update CI actions to `v3` (#19 by @JordanMartinez) +- Enforce formatting check via `purs-tidy` (#19 by @JordanMartinez) ## [v6.0.0](https://github.com/purescript-node/purescript-node-url/releases/tag/v6.0.0) - 2022-04-27