Skip to content

Commit

Permalink
Merge pull request #779 from s-yadav/dev
Browse files Browse the repository at this point in the history
Test upgrade
  • Loading branch information
s-yadav authored May 12, 2024
2 parents 280ea0b + ca97625 commit 5edf305
Show file tree
Hide file tree
Showing 34 changed files with 151,993 additions and 3,052 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [14]
node: [20]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Use node ${{ matrix.node }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
registry-url: https://registry.npmjs.org

- name: Install
run: yarn
run: yarn install --frozen-lockfile

- name: Lint
run: yarn run lint

- name: Test
run: TEST_BROWSER=ChromeHeadless yarn test
run: yarn test-build
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
node_modules/**/*

.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

*.swp
.DS_Store
*.log
Expand Down
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"editor.formatOnSave": true
}
Loading

0 comments on commit 5edf305

Please sign in to comment.