chore(deps): update dependency @types/node to v16.18.123 #1347
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: E2E test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 14 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
# build plugin | |
- run: yarn install --immutable --immutable-cache | |
- run: yarn build | |
- run: yarn test:ci | |
# run example and test | |
- run: yarn install --immutable --immutable-cache | |
working-directory: example | |
- run: yarn build | |
working-directory: example | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.9" | |
- name: Install dependencies | |
working-directory: example | |
run: | | |
pip install -r requirements.txt | |
- run: yarn test:e2e:ci |