Skip to content

Commit

Permalink
Fix remark setup
Browse files Browse the repository at this point in the history
  • Loading branch information
remcohaszing committed May 6, 2023
1 parent 2d91338 commit fe1ff66
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@ jobs:
name: package
path: '*.tgz'

remark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npx remark --frail .

test:
runs-on: ubuntu-latest
continue-on-error: true
Expand Down Expand Up @@ -73,7 +83,13 @@ jobs:

release:
runs-on: ubuntu-latest
needs: [eslint, pack, prettier, tsc]
needs:
- eslint
- pack
- prettier
- remark
- test
- tsc
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/setup-node@v3
Expand Down
1 change: 1 addition & 0 deletions .remarkignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/*-snapshots/*

0 comments on commit fe1ff66

Please sign in to comment.