chore(deps): update dependency rimraf to v5.0.5 #4051
Workflow file for this run
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: build | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: npm install, build, and test | |
run: | | |
yarn --frozen-lockfile | |
yarn compile | |
yarn link | |
yarn link ts-graphql-plugin | |
yarn test | |
env: | |
CI: true | |
- uses: codecov/codecov-action@v3 | |
with: | |
name: jest | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./coverage/coverage-final.json | |
- uses: codecov/codecov-action@v3 | |
with: | |
name: e2e | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./e2e_coverage/coverage-final.json |