Skip to content

chore(deps): bump follow-redirects from 1.11.0 to 1.15.4 #8

chore(deps): bump follow-redirects from 1.11.0 to 1.15.4

chore(deps): bump follow-redirects from 1.11.0 to 1.15.4 #8

Workflow file for this run

name: Pull Request Checks
on:
pull_request:
jobs:
lint_build_test:
name: "Lint, Build & Test"
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: "πŸ›Ž Checkout"
uses: actions/checkout@v3
- name: "πŸ”§ Setup"
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- name: "πŸ“ Create .npmrc"
run: |
echo "//npm.pkg.github.com/:_authToken=${{ secrets.READ_PACKAGES_TOKEN }}" >> .npmrc
echo "@kieranroneill:registry=https://npm.pkg.github.com" >> .npmrc
- name: "πŸ“¦ Install"
run: yarn install --frozen-lockfile
- name: "πŸ‘• Lint"
run: yarn lint
- name: "πŸ—οΈ Build"
run: yarn build
- name: "πŸ§ͺ Test"
run: yarn test