chore(deps-dev): bump dprint from 0.47.2 to 0.47.4 #588
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: Tests | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
env: | |
NPM_TOKEN: "" | |
jobs: | |
run-tests: | |
name: Run Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install GJS | |
run: | | |
sudo sed -i 's/azure\.//' /etc/apt/sources.list | |
echo nameserver 8.8.8.8 | sudo tee /etc/resolv.conf | |
echo "Starting update" | |
sudo apt-get update -o Acquire::ForceIPv4=true -y | |
echo "Installing GJS" | |
sudo apt-get install -o Acquire::ForceIPv4=true -y gjs | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: yarn | |
- name: Install dependencies | |
run: ./.yarn/yarn.cjs install --immutable --mode=skip-build | |
- name: Run TypeScript | |
run: ./.yarn/yarn.cjs test:tsc | |
- name: Run Linter | |
run: ./.yarn/yarn.cjs test:lint | |
- name: Run Format Check | |
run: ./.yarn/yarn.cjs test:fmt | |
- name: Run Unit Test | |
run: ./.yarn/yarn.cjs test:unit | |
- name: Attempt Build | |
run: ./.yarn/yarn.cjs build |