Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

chore: Bump github actions #10

Merged
merged 1 commit into from
Oct 27, 2023
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
11 changes: 7 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,24 @@ jobs:
node-version: [16, 18, 20]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.0.2

- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3.1.1
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
# Useful for caching dependencies in monorepos
cache-dependency-path: yarn.lock

- name: Bootstrap
run: |
yarn bootstrap
npm run build
yarn build

- name: Run tests
run: |
npm run test ci
yarn test ci

- name: Coveralls
if: matrix.node-version == 18
Expand Down
28 changes: 20 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,19 +1,32 @@
# Yarn
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

*/**/yarn.lock
yarn-error.log
npm-debug.log
report*.json

# Node modules
node_modules/

# Dists
dist/*
dist-esm/*
dist-es6/*
**/dist/*

node_modules/
# Generatred
coverage/
.nyc_output/

.docusaurus

npm-debug.log
*/**/yarn.lock
yarn-error.log
report*.json

# typescript
tsconfig.tsbuildinfo

# editor files
Expand All @@ -23,4 +36,3 @@ tsconfig.tsbuildinfo
*.zip
*.rar

.reify-cache
Loading