Skip to content

Commit 1b7c754

Browse files
Merge branch 'main' into toast
2 parents cec4964 + 9c6e622 commit 1b7c754

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+6042
-1955
lines changed

.github/workflows/build.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Build workflow
2+
name: Build
3+
4+
on: [pull_request, workflow_dispatch]
5+
6+
permissions:
7+
contents: read
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
- name: Setup Node
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: latest
19+
cache: 'npm'
20+
- run: npm ci
21+
- run: npm run build
22+
- run: npm run lint

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ module.exports = [
129129
},
130130
},
131131
{
132-
files: ['**/*.mocha.js'],
132+
files: ['**/*.mocha.js', 'test/webdriverio/test/*_test.js'],
133133
languageOptions: {
134134
globals: {
135135
...globals.mocha,

0 commit comments

Comments
 (0)