Skip to content

Commit

Permalink
chore: add files to gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
dckc authored and amessbee committed Aug 23, 2024
1 parent 087e659 commit 6df95b1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@ on:
jobs:
unit:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Use Node.js LTS versions
uses: actions/setup-node@v3
with:
# use node 18.8.x until Agoric/agoric-sdk#8636
node-version: ['18.x', '20.x']
node-version: ${{ matrix.node-version }}
- name: yarn install
run: yarn
- name: yarn lint
Expand Down
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,10 @@ dist-ssr
# Synpress directories and files
screenshots
videos

# Yarn related
.yarnrc.yml
.yarn/install-state.gz

# contract tx
contract/,tx.json

0 comments on commit 6df95b1

Please sign in to comment.