chore(deps): bump nanoid from 3.3.7 to 3.3.8 in /examples/vue (#107) #294
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test-node-18: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- run: yarn install --frozen-lockfile | |
- run: yarn ci | |
test-node-20: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: yarn install --frozen-lockfile | |
- run: yarn ci | |
test-commonjs-example: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: yarn install --frozen-lockfile | |
- run: yarn install --frozen-lockfile | |
working-directory: ./examples/commonjs | |
- run: yarn test | |
working-directory: ./examples/commonjs | |
test-typescript-bundler-example: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: yarn install --frozen-lockfile | |
- run: yarn install --frozen-lockfile | |
working-directory: ./examples/typescript-bundler | |
- run: yarn test | |
working-directory: ./examples/typescript-bundler | |
test-typescript-legacy-example: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: yarn install --frozen-lockfile | |
- run: yarn install --frozen-lockfile | |
working-directory: ./examples/typescript-legacy | |
- run: yarn test | |
working-directory: ./examples/typescript-legacy | |
test-typescript-nodenext-example: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: yarn install --frozen-lockfile | |
- run: yarn install --frozen-lockfile | |
working-directory: ./examples/typescript-nodenext | |
- run: yarn test | |
working-directory: ./examples/typescript-nodenext | |
test-vue-example: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: yarn install --frozen-lockfile | |
- run: yarn install --frozen-lockfile | |
working-directory: ./examples/vue | |
- run: yarn test | |
working-directory: ./examples/vue | |
test-web-test-runner-example: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: yarn install --frozen-lockfile | |
- run: yarn install --frozen-lockfile | |
working-directory: ./examples/web-test-runner | |
- run: yarn test | |
working-directory: ./examples/web-test-runner | |
test-wpt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: actions/setup-python@v5 | |
with: | |
# REF: https://github.com/web-platform-tests/wpt/issues/44427 | |
python-version: '3.11' | |
- name: Setup HOSTS file for Web Platform Test server | |
run: yarn wpt:hosts | |
- run: yarn install --frozen-lockfile | |
- run: yarn build | |
- run: yarn wpt:test |