Skip to content

Bump cross-spawn from 7.0.3 to 7.0.6 (#95) #174

Bump cross-spawn from 7.0.3 to 7.0.6 (#95)

Bump cross-spawn from 7.0.3 to 7.0.6 (#95) #174

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository 🛒
uses: actions/checkout@v3
- name: Set Timezone 🌍
uses: szenius/[email protected]
with:
timezoneLinux: Europe/London
- name: Set node version 🤖
run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_OUTPUT
id: nvm
- name: Set up Node.js ${{ steps.nvm.outputs.NODE_VERSION }} 🤖
uses: actions/setup-node@v3
with:
node-version: ${{ steps.nvm.outputs.NODE_VERSION }}
- name: Install dependencies 🌀
run: npm install
- name: Lint the code 🔍
run: npm run lint
- name: Run the tests 🧪
run: npm run test-single
- name: Upload coverage to Codecov 📈
uses: codecov/codecov-action@v3