Bump ws from 8.17.0 to 8.17.1 #169
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout (pull_request) | |
if: github.event_name == 'pull_request' | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Checkout (push) | |
if: github.event_name == 'push' | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
registry-url: https://registry.npmjs.org/ | |
- run: yarn install | |
- run: yarn test -- --ci --coverage | |
- run: yarn run lint | |
- name: Set ENV for codeclimate (pull_request) | |
run: | | |
echo "GIT_BRANCH=${{ github.head_ref }}" >> $GITHUB_ENV | |
echo "GIT_COMMIT_SHA=$(git rev-parse HEAD)" >> $GITHUB_ENV | |
if: github.event_name == 'pull_request' | |
- name: Set ENV for codeclimate (push) | |
run: | | |
echo "GIT_BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV | |
echo "GIT_COMMIT_SHA=$GITHUB_SHA" >> $GITHUB_ENV | |
if: github.event_name == 'push' | |
- name: Code Climate Test Reporter | |
uses: aktions/codeclimate-test-reporter@v1 | |
with: | |
codeclimate-test-reporter-id: e603a31c2988a01bae194f33de60d6f6f17b68cc8f36e5479f987e34d2186988 | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
registry-url: https://registry.npmjs.org/ | |
- run: yarn install | |
- run: yarn run build |