This repository was archived by the owner on Dec 8, 2025. It is now read-only.
chore(deps): bump js-yaml from 4.1.0 to 4.1.1 #52
This file contains hidden or 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: CI [branches] | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'master' | |
| tags-ignore: | |
| - '**' | |
| jobs: | |
| lint: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| node-version: [16.x, 18.x] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Yarn install with caching | |
| uses: bahmutov/npm-install@v1 | |
| - run: yarn lint | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| node-version: [16.x, 18.x] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Yarn install with caching | |
| uses: bahmutov/npm-install@v1 | |
| - run: yarn test --coverage | |
| - name: Coveralls GitHub Action | |
| uses: coverallsapp/github-action@v1.1.1 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| e2e: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| node-version: [16.x, 18.x] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Yarn install with caching | |
| uses: bahmutov/npm-install@v1 | |
| - run: ./scripts/end-to-end-tests.sh |