Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1 @@
dist/**/* linguist-generated=true
package-lock.json linguist-generated=true
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
cache: npm

- run: yarn install --immutable
- run: yarn build
- run: npm ci
- run: npm run build

- name: Verify that `yarn build` did not change outputs
- name: Verify that `npm run build` did not change outputs
run: git diff --exit-code

- run: yarn test
- run: yarn lint
- run: npm test
- run: npm run lint
Loading