Skip to content

Commit

Permalink
chore: Bump github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ibgreen committed Oct 27, 2023
1 parent 0fa6663 commit d40fda6
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 12 deletions.
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

0 comments on commit d40fda6

Please sign in to comment.